1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
)
type Application struct {
// Application aggregated status.
ApplicationAggregatedStatus *ApplicationAggregatedStatus
// Application ID.
ApplicationID *string
// Application ARN.
Arn *string
// Application creation dateTime.
CreationDateTime *string
// Application description.
Description *string
// Application archival status.
IsArchived *bool
// Application last modified dateTime.
LastModifiedDateTime *string
// Application name.
Name *string
// Application tags.
Tags map[string]string
// Application wave ID.
WaveID *string
noSmithyDocumentSerde
}
// Application aggregated status.
type ApplicationAggregatedStatus struct {
// Application aggregated status health status.
HealthStatus ApplicationHealthStatus
// Application aggregated status last update dateTime.
LastUpdateDateTime *string
// Application aggregated status progress status.
ProgressStatus ApplicationProgressStatus
// Application aggregated status total source servers amount.
TotalSourceServers int64
noSmithyDocumentSerde
}
// The request to change the source server migration lifecycle state.
type ChangeServerLifeCycleStateSourceServerLifecycle struct {
// The request to change the source server migration lifecycle state.
//
// This member is required.
State ChangeServerLifeCycleStateSourceServerLifecycleState
noSmithyDocumentSerde
}
type Connector struct {
// Connector arn.
Arn *string
// Connector ID.
ConnectorID *string
// Connector name.
Name *string
// Connector SSM command config.
SsmCommandConfig *ConnectorSsmCommandConfig
// Connector SSM instance ID.
SsmInstanceID *string
// Connector tags.
Tags map[string]string
noSmithyDocumentSerde
}
// Connector SSM command config.
type ConnectorSsmCommandConfig struct {
// Connector SSM command config CloudWatch output enabled.
//
// This member is required.
CloudWatchOutputEnabled *bool
// Connector SSM command config S3 output enabled.
//
// This member is required.
S3OutputEnabled *bool
// Connector SSM command config CloudWatch log group name.
CloudWatchLogGroupName *string
// Connector SSM command config output S3 bucket name.
OutputS3BucketName *string
noSmithyDocumentSerde
}
// Source server CPU information.
type CPU struct {
// The number of CPU cores on the source server.
Cores int64
// The source server's CPU model name.
ModelName *string
noSmithyDocumentSerde
}
// Error in data replication.
type DataReplicationError struct {
// Error in data replication.
Error DataReplicationErrorString
// Error in data replication.
RawError *string
noSmithyDocumentSerde
}
// Request data replication info.
type DataReplicationInfo struct {
// Error in obtaining data replication info.
DataReplicationError *DataReplicationError
// Request to query whether data replication has been initiated.
DataReplicationInitiation *DataReplicationInitiation
// Request to query the data replication state.
DataReplicationState DataReplicationState
// Request to query the time when data replication will be complete.
EtaDateTime *string
// Request to query data replication lag duration.
LagDuration *string
// Request to query data replication last snapshot time.
LastSnapshotDateTime *string
// Request to query disks replicated.
ReplicatedDisks []DataReplicationInfoReplicatedDisk
noSmithyDocumentSerde
}
// Request to query disks replicated.
type DataReplicationInfoReplicatedDisk struct {
// Request to query data replication backlog size in bytes.
BackloggedStorageBytes int64
// Request to query device name.
DeviceName *string
// Request to query amount of data replicated in bytes.
ReplicatedStorageBytes int64
// Request to query amount of data rescanned in bytes.
RescannedStorageBytes int64
// Request to query total amount of data replicated in bytes.
TotalStorageBytes int64
noSmithyDocumentSerde
}
// Data replication initiation.
type DataReplicationInitiation struct {
// Request to query next data initiation date and time.
NextAttemptDateTime *string
// Request to query data initiation start date and time.
StartDateTime *string
// Request to query data initiation steps.
Steps []DataReplicationInitiationStep
noSmithyDocumentSerde
}
// Data replication initiation step.
type DataReplicationInitiationStep struct {
// Request to query data initiation step name.
Name DataReplicationInitiationStepName
// Request to query data initiation status.
Status DataReplicationInitiationStepStatus
noSmithyDocumentSerde
}
// Request to describe Job log filters.
type DescribeJobsRequestFilters struct {
// Request to describe Job log filters by date.
FromDate *string
// Request to describe Job log filters by job ID.
JobIDs []string
// Request to describe job log items by last date.
ToDate *string
noSmithyDocumentSerde
}
// Request to filter Source Servers list.
type DescribeSourceServersRequestFilters struct {
// Request to filter Source Servers list by application IDs.
ApplicationIDs []string
// Request to filter Source Servers list by archived.
IsArchived *bool
// Request to filter Source Servers list by life cycle states.
LifeCycleStates []LifeCycleState
// Request to filter Source Servers list by replication type.
ReplicationTypes []ReplicationType
// Request to filter Source Servers list by Source Server ID.
SourceServerIDs []string
noSmithyDocumentSerde
}
// The disk identifier.
type Disk struct {
// The amount of storage on the disk in bytes.
Bytes int64
// The disk or device name.
DeviceName *string
noSmithyDocumentSerde
}
// Error details.
type ErrorDetails struct {
// Error details code.
Code *string
// Error details message.
Message *string
// Error details resourceId.
ResourceId *string
// Error details resourceType.
ResourceType *string
noSmithyDocumentSerde
}
// Export errors data.
type ExportErrorData struct {
// Export errors data raw error.
RawError *string
noSmithyDocumentSerde
}
// Export task.
type ExportTask struct {
// Export task creation datetime.
CreationDateTime *string
// Export task end datetime.
EndDateTime *string
// Export task id.
ExportID *string
// Export task progress percentage.
ProgressPercentage *float32
// Export task s3 bucket.
S3Bucket *string
// Export task s3 bucket owner.
S3BucketOwner *string
// Export task s3 key.
S3Key *string
// Export task status.
Status ExportStatus
// Export task summary.
Summary *ExportTaskSummary
noSmithyDocumentSerde
}
// Export task error.
type ExportTaskError struct {
// Export task error data.
ErrorData *ExportErrorData
// Export task error datetime.
ErrorDateTime *string
noSmithyDocumentSerde
}
// Export task summary.
type ExportTaskSummary struct {
// Export task summary applications count.
ApplicationsCount int64
// Export task summary servers count.
ServersCount int64
// Export task summary waves count.
WavesCount int64
noSmithyDocumentSerde
}
// Identification hints.
type IdentificationHints struct {
// AWS Instance ID identification hint.
AwsInstanceID *string
// FQDN address identification hint.
Fqdn *string
// Hostname identification hint.
Hostname *string
// vCenter VM path identification hint.
VmPath *string
// vmWare UUID identification hint.
VmWareUuid *string
noSmithyDocumentSerde
}
// Import error data.
type ImportErrorData struct {
// Import error data source account ID.
AccountID *string
// Import error data application ID.
ApplicationID *string
// Import error data ec2 LaunchTemplate ID.
Ec2LaunchTemplateID *string
// Import error data raw error.
RawError *string
// Import error data row number.
RowNumber int64
// Import error data source server ID.
SourceServerID *string
// Import error data wave id.
WaveID *string
noSmithyDocumentSerde
}
// Import task.
type ImportTask struct {
// Import task creation datetime.
CreationDateTime *string
// Import task end datetime.
EndDateTime *string
// Import task id.
ImportID *string
// Import task progress percentage.
ProgressPercentage *float32
// Import task s3 bucket source.
S3BucketSource *S3BucketSource
// Import task status.
Status ImportStatus
// Import task summary.
Summary *ImportTaskSummary
noSmithyDocumentSerde
}
// Import task error.
type ImportTaskError struct {
// Import task error data.
ErrorData *ImportErrorData
// Import task error datetime.
ErrorDateTime *string
// Import task error type.
ErrorType ImportErrorType
noSmithyDocumentSerde
}
// Import task summary.
type ImportTaskSummary struct {
// Import task summary applications.
Applications *ImportTaskSummaryApplications
// Import task summary servers.
Servers *ImportTaskSummaryServers
// Import task summary waves.
Waves *ImportTaskSummaryWaves
noSmithyDocumentSerde
}
// Import task summary applications.
type ImportTaskSummaryApplications struct {
// Import task summary applications created count.
CreatedCount int64
// Import task summary applications modified count.
ModifiedCount int64
noSmithyDocumentSerde
}
// Import task summary servers.
type ImportTaskSummaryServers struct {
// Import task summary servers created count.
CreatedCount int64
// Import task summary servers modified count.
ModifiedCount int64
noSmithyDocumentSerde
}
// Import task summery waves.
type ImportTaskSummaryWaves struct {
// Import task summery waves created count.
CreatedCount int64
// Import task summery waves modified count.
ModifiedCount int64
noSmithyDocumentSerde
}
// Job.
type Job struct {
// Job ID.
//
// This member is required.
JobID *string
// the ARN of the specific Job.
Arn *string
// Job creation time.
CreationDateTime *string
// Job end time.
EndDateTime *string
// Job initiated by field.
InitiatedBy InitiatedBy
// Servers participating in a specific Job.
ParticipatingServers []ParticipatingServer
// Job status.
Status JobStatus
// Tags associated with specific Job.
Tags map[string]string
// Job type.
Type JobType
noSmithyDocumentSerde
}
// Job log.
type JobLog struct {
// Job log event.
Event JobLogEvent
// Job event data
EventData *JobLogEventData
// Job log event date and time.
LogDateTime *string
noSmithyDocumentSerde
}
// Job log data
type JobLogEventData struct {
// Job Event conversion Server ID.
ConversionServerID *string
// Job error.
RawError *string
// Job Event Source Server ID.
SourceServerID *string
// Job Event Target instance ID.
TargetInstanceID *string
noSmithyDocumentSerde
}
// Launch Status of the Job Post Launch Actions.
type JobPostLaunchActionsLaunchStatus struct {
// AWS Systems Manager Document's execution ID of the of the Job Post Launch
// Actions.
ExecutionID *string
// AWS Systems Manager Document's execution status.
ExecutionStatus PostLaunchActionExecutionStatus
// AWS Systems Manager Document's failure reason.
FailureReason *string
// AWS Systems Manager's Document of the of the Job Post Launch Actions.
SsmDocument *SsmDocument
// AWS Systems Manager Document type.
SsmDocumentType SsmDocumentType
noSmithyDocumentSerde
}
type LaunchConfigurationTemplate struct {
// ID of the Launch Configuration Template.
//
// This member is required.
LaunchConfigurationTemplateID *string
// ARN of the Launch Configuration Template.
Arn *string
// Associate public Ip address.
AssociatePublicIpAddress *bool
// Launch configuration template boot mode.
BootMode BootMode
// Copy private Ip.
CopyPrivateIp *bool
// Copy tags.
CopyTags *bool
// EC2 launch template ID.
Ec2LaunchTemplateID *string
// Enable map auto tagging.
EnableMapAutoTagging *bool
// Large volume config.
LargeVolumeConf *LaunchTemplateDiskConf
// Launch disposition.
LaunchDisposition LaunchDisposition
// Configure Licensing.
Licensing *Licensing
// Launch configuration template map auto tagging MPE ID.
MapAutoTaggingMpeID *string
// Post Launch Actions of the Launch Configuration Template.
PostLaunchActions *PostLaunchActions
// Small volume config.
SmallVolumeConf *LaunchTemplateDiskConf
// Small volume maximum size.
SmallVolumeMaxSize int64
// Tags of the Launch Configuration Template.
Tags map[string]string
// Target instance type right-sizing method.
TargetInstanceTypeRightSizingMethod TargetInstanceTypeRightSizingMethod
noSmithyDocumentSerde
}
// Launched instance.
type LaunchedInstance struct {
// Launched instance EC2 ID.
Ec2InstanceID *string
// Launched instance first boot.
FirstBoot FirstBoot
// Launched instance Job ID.
JobID *string
noSmithyDocumentSerde
}
// Launch template disk configuration.
type LaunchTemplateDiskConf struct {
// Launch template disk iops configuration.
Iops *int64
// Launch template disk throughput configuration.
Throughput *int64
// Launch template disk volume type configuration.
VolumeType VolumeType
noSmithyDocumentSerde
}
// Configure Licensing.
type Licensing struct {
// Configure BYOL OS licensing.
OsByol *bool
noSmithyDocumentSerde
}
// Lifecycle.
type LifeCycle struct {
// Lifecycle added to service data and time.
AddedToServiceDateTime *string
// Lifecycle elapsed time and duration.
ElapsedReplicationDuration *string
// Lifecycle replication initiation date and time.
FirstByteDateTime *string
// Lifecycle last Cutover.
LastCutover *LifeCycleLastCutover
// Lifecycle last seen date and time.
LastSeenByServiceDateTime *string
// Lifecycle last Test.
LastTest *LifeCycleLastTest
// Lifecycle state.
State LifeCycleState
noSmithyDocumentSerde
}
// Lifecycle last Cutover .
type LifeCycleLastCutover struct {
// Lifecycle Cutover finalized date and time.
Finalized *LifeCycleLastCutoverFinalized
// Lifecycle last Cutover initiated.
Initiated *LifeCycleLastCutoverInitiated
// Lifecycle last Cutover reverted.
Reverted *LifeCycleLastCutoverReverted
noSmithyDocumentSerde
}
// Lifecycle Cutover finalized
type LifeCycleLastCutoverFinalized struct {
// Lifecycle Cutover finalized date and time.
ApiCallDateTime *string
noSmithyDocumentSerde
}
// Lifecycle last Cutover initiated.
type LifeCycleLastCutoverInitiated struct {
//
ApiCallDateTime *string
// Lifecycle last Cutover initiated by Job ID.
JobID *string
noSmithyDocumentSerde
}
// Lifecycle last Cutover reverted.
type LifeCycleLastCutoverReverted struct {
// Lifecycle last Cutover reverted API call date time.
ApiCallDateTime *string
noSmithyDocumentSerde
}
// Lifecycle last Test.
type LifeCycleLastTest struct {
// Lifecycle last Test finalized.
Finalized *LifeCycleLastTestFinalized
// Lifecycle last Test initiated.
Initiated *LifeCycleLastTestInitiated
// Lifecycle last Test reverted.
Reverted *LifeCycleLastTestReverted
noSmithyDocumentSerde
}
// Lifecycle last Test finalized.
type LifeCycleLastTestFinalized struct {
// Lifecycle Test failed API call date and time.
ApiCallDateTime *string
noSmithyDocumentSerde
}
// Lifecycle last Test initiated.
type LifeCycleLastTestInitiated struct {
// Lifecycle last Test initiated API call date and time.
ApiCallDateTime *string
// Lifecycle last Test initiated Job ID.
JobID *string
noSmithyDocumentSerde
}
// Lifecycle last Test reverted.
type LifeCycleLastTestReverted struct {
// Lifecycle last Test reverted API call date and time.
ApiCallDateTime *string
noSmithyDocumentSerde
}
// Applications list filters.
type ListApplicationsRequestFilters struct {
// Filter applications list by application ID.
ApplicationIDs []string
// Filter applications list by archival status.
IsArchived *bool
// Filter applications list by wave ID.
WaveIDs []string
noSmithyDocumentSerde
}
// List Connectors Request Filters.
type ListConnectorsRequestFilters struct {
// List Connectors Request Filters connector IDs.
ConnectorIDs []string
noSmithyDocumentSerde
}
// List exports request filters.
type ListExportsRequestFilters struct {
// List exports request filters export ids.
ExportIDs []string
noSmithyDocumentSerde
}
// List imports request filters.
type ListImportsRequestFilters struct {
// List imports request filters import IDs.
ImportIDs []string
noSmithyDocumentSerde
}
// Waves list filters.
type ListWavesRequestFilters struct {
// Filter waves list by archival status.
IsArchived *bool
// Filter waves list by wave ID.
WaveIDs []string
noSmithyDocumentSerde
}
// Managed account.
type ManagedAccount struct {
// Managed account, account ID.
AccountId *string
noSmithyDocumentSerde
}
// Network interface.
type NetworkInterface struct {
// Network interface IPs.
Ips []string
// Network interface primary IP.
IsPrimary *bool
// Network interface Mac address.
MacAddress *string
noSmithyDocumentSerde
}
// Operating System.
type OS struct {
// OS full string.
FullString *string
noSmithyDocumentSerde
}
// Server participating in Job.
type ParticipatingServer struct {
// Participating server Source Server ID.
//
// This member is required.
SourceServerID *string
// Participating server launch status.
LaunchStatus LaunchStatus
// Participating server's launched ec2 instance ID.
LaunchedEc2InstanceID *string
// Participating server's Post Launch Actions Status.
PostLaunchActionsStatus *PostLaunchActionsStatus
noSmithyDocumentSerde
}
// Post Launch Actions to executed on the Test or Cutover instance.
type PostLaunchActions struct {
// AWS Systems Manager Command's CloudWatch log group name.
CloudWatchLogGroupName *string
// Deployment type in which AWS Systems Manager Documents will be executed.
Deployment PostLaunchActionsDeploymentType
// AWS Systems Manager Command's logs S3 log bucket.
S3LogBucket *string
// AWS Systems Manager Command's logs S3 output key prefix.
S3OutputKeyPrefix *string
// AWS Systems Manager Documents.
SsmDocuments []SsmDocument
noSmithyDocumentSerde
}
// Status of the Post Launch Actions running on the Test or Cutover instance.
type PostLaunchActionsStatus struct {
// List of Post Launch Action status.
PostLaunchActionsLaunchStatusList []JobPostLaunchActionsLaunchStatus
// Time where the AWS Systems Manager was detected as running on the Test or
// Cutover instance.
SsmAgentDiscoveryDatetime *string
noSmithyDocumentSerde
}
// Replication Configuration replicated disk.
type ReplicationConfigurationReplicatedDisk struct {
// Replication Configuration replicated disk device name.
DeviceName *string
// Replication Configuration replicated disk IOPs.
Iops int64
// Replication Configuration replicated disk boot disk.
IsBootDisk *bool
// Replication Configuration replicated disk staging disk type.
StagingDiskType ReplicationConfigurationReplicatedDiskStagingDiskType
// Replication Configuration replicated disk throughput.
Throughput int64
noSmithyDocumentSerde
}
type ReplicationConfigurationTemplate struct {
// Replication Configuration template ID.
//
// This member is required.
ReplicationConfigurationTemplateID *string
// Replication Configuration template ARN.
Arn *string
// Replication Configuration template associate default Application Migration
// Service Security group.
AssociateDefaultSecurityGroup *bool
// Replication Configuration template bandwidth throttling.
BandwidthThrottling int64
// Replication Configuration template create Public IP.
CreatePublicIP *bool
// Replication Configuration template data plane routing.
DataPlaneRouting ReplicationConfigurationDataPlaneRouting
// Replication Configuration template use default large Staging Disk type.
DefaultLargeStagingDiskType ReplicationConfigurationDefaultLargeStagingDiskType
// Replication Configuration template EBS encryption.
EbsEncryption ReplicationConfigurationEbsEncryption
// Replication Configuration template EBS encryption key ARN.
EbsEncryptionKeyArn *string
// Replication Configuration template server instance type.
ReplicationServerInstanceType *string
// Replication Configuration template server Security Groups IDs.
ReplicationServersSecurityGroupsIDs []string
// Replication Configuration template Staging Area subnet ID.
StagingAreaSubnetId *string
// Replication Configuration template Staging Area Tags.
StagingAreaTags map[string]string
// Replication Configuration template Tags.
Tags map[string]string
// Replication Configuration template use Dedicated Replication Server.
UseDedicatedReplicationServer *bool
// Replication Configuration template use Fips Endpoint.
UseFipsEndpoint *bool
noSmithyDocumentSerde
}
// S3 bucket source.
type S3BucketSource struct {
// S3 bucket source s3 bucket.
//
// This member is required.
S3Bucket *string
// S3 bucket source s3 key.
//
// This member is required.
S3Key *string
// S3 bucket source s3 bucket owner.
S3BucketOwner *string
noSmithyDocumentSerde
}
// Source server properties.
type SourceProperties struct {
// Source Server CPUs.
Cpus []CPU
// Source Server disks.
Disks []Disk
// Source server identification hints.
IdentificationHints *IdentificationHints
// Source server last update date and time.
LastUpdatedDateTime *string
// Source server network interfaces.
NetworkInterfaces []NetworkInterface
// Source server OS.
Os *OS
// Source server RAM in bytes.
RamBytes int64
// Source server recommended instance type.
RecommendedInstanceType *string
noSmithyDocumentSerde
}
type SourceServer struct {
// Source server application ID.
ApplicationID *string
// Source server ARN.
Arn *string
// Source Server connector action.
ConnectorAction *SourceServerConnectorAction
// Source server data replication info.
DataReplicationInfo *DataReplicationInfo
// Source server fqdn for action framework.
FqdnForActionFramework *string
// Source server archived status.
IsArchived *bool
// Source server launched instance.
LaunchedInstance *LaunchedInstance
// Source server lifecycle state.
LifeCycle *LifeCycle
// Source server replication type.
ReplicationType ReplicationType
// Source server properties.
SourceProperties *SourceProperties
// Source server ID.
SourceServerID *string
// Source server Tags.
Tags map[string]string
// Source server user provided ID.
UserProvidedID *string
// Source server vCenter client id.
VcenterClientID *string
noSmithyDocumentSerde
}
type SourceServerActionDocument struct {
// Source server post migration custom action ID.
ActionID *string
// Source server post migration custom action name.
ActionName *string
// Source server post migration custom action active status.
Active *bool
// Source server post migration custom action category.
Category ActionCategory
// Source server post migration custom action description.
Description *string
// Source server post migration custom action document identifier.
DocumentIdentifier *string
// Source server post migration custom action document version.
DocumentVersion *string
// Source server post migration custom action external parameters.
ExternalParameters map[string]SsmExternalParameter
// Source server post migration custom action must succeed for cutover.
MustSucceedForCutover *bool
// Source server post migration custom action order.
Order *int32
// Source server post migration custom action parameters.
Parameters map[string][]SsmParameterStoreParameter
// Source server post migration custom action timeout in seconds.
TimeoutSeconds *int32
noSmithyDocumentSerde
}
// Source server post migration custom action filters.
type SourceServerActionsRequestFilters struct {
// Action IDs to filter source server post migration custom actions by.
ActionIDs []string
noSmithyDocumentSerde
}
// Source Server connector action.
type SourceServerConnectorAction struct {
// Source Server connector action connector arn.
ConnectorArn *string
// Source Server connector action credentials secret arn.
CredentialsSecretArn *string
noSmithyDocumentSerde
}
// AWS Systems Manager Document.
type SsmDocument struct {
// User-friendly name for the AWS Systems Manager Document.
//
// This member is required.
ActionName *string
// AWS Systems Manager Document name or full ARN.
//
// This member is required.
SsmDocumentName *string
// AWS Systems Manager Document external parameters.
ExternalParameters map[string]SsmExternalParameter
// If true, Cutover will not be enabled if the document has failed.
MustSucceedForCutover *bool
// AWS Systems Manager Document parameters.
Parameters map[string][]SsmParameterStoreParameter
// AWS Systems Manager Document timeout seconds.
TimeoutSeconds *int32
noSmithyDocumentSerde
}
// AWS Systems Manager Document external parameter.
//
// The following types satisfy this interface:
//
// SsmExternalParameterMemberDynamicPath
type SsmExternalParameter interface {
isSsmExternalParameter()
}
// AWS Systems Manager Document external parameters dynamic path.
type SsmExternalParameterMemberDynamicPath struct {
Value string
noSmithyDocumentSerde
}
func (*SsmExternalParameterMemberDynamicPath) isSsmExternalParameter() {}
// AWS Systems Manager Parameter Store parameter.
type SsmParameterStoreParameter struct {
// AWS Systems Manager Parameter Store parameter name.
//
// This member is required.
ParameterName *string
// AWS Systems Manager Parameter Store parameter type.
//
// This member is required.
ParameterType SsmParameterStoreParameterType
noSmithyDocumentSerde
}
type TemplateActionDocument struct {
// Template post migration custom action ID.
ActionID *string
// Template post migration custom action name.
ActionName *string
// Template post migration custom action active status.
Active *bool
// Template post migration custom action category.
Category ActionCategory
// Template post migration custom action description.
Description *string
// Template post migration custom action document identifier.
DocumentIdentifier *string
// Template post migration custom action document version.
DocumentVersion *string
// Template post migration custom action external parameters.
ExternalParameters map[string]SsmExternalParameter
// Template post migration custom action must succeed for cutover.
MustSucceedForCutover *bool
// Operating system eligible for this template post migration custom action.
OperatingSystem *string
// Template post migration custom action order.
Order *int32
// Template post migration custom action parameters.
Parameters map[string][]SsmParameterStoreParameter
// Template post migration custom action timeout in seconds.
TimeoutSeconds *int32
noSmithyDocumentSerde
}
// Template post migration custom action filters.
type TemplateActionsRequestFilters struct {
// Action IDs to filter template post migration custom actions by.
ActionIDs []string
noSmithyDocumentSerde
}
// Validate exception field.
type ValidationExceptionField struct {
// Validate exception field message.
Message *string
// Validate exception field name.
Name *string
noSmithyDocumentSerde
}
// vCenter client.
type VcenterClient struct {
// Arn of vCenter client.
Arn *string
// Datacenter name of vCenter client.
DatacenterName *string
// Hostname of vCenter client .
Hostname *string
// Last seen time of vCenter client.
LastSeenDatetime *string
// Tags for Source Server of vCenter client.
SourceServerTags map[string]string
// Tags for vCenter client.
Tags map[string]string
// ID of vCenter client.
VcenterClientID *string
// Vcenter UUID of vCenter client.
VcenterUUID *string
noSmithyDocumentSerde
}
type Wave struct {
// Wave ARN.
Arn *string
// Wave creation dateTime.
CreationDateTime *string
// Wave description.
Description *string
// Wave archival status.
IsArchived *bool
// Wave last modified dateTime.
LastModifiedDateTime *string
// Wave name.
Name *string
// Wave tags.
Tags map[string]string
// Wave aggregated status.
WaveAggregatedStatus *WaveAggregatedStatus
// Wave ID.
WaveID *string
noSmithyDocumentSerde
}
// Wave aggregated status.
type WaveAggregatedStatus struct {
// Wave aggregated status health status.
HealthStatus WaveHealthStatus
// Wave aggregated status last update dateTime.
LastUpdateDateTime *string
// Wave aggregated status progress status.
ProgressStatus WaveProgressStatus
// DateTime marking when the first source server in the wave started replication.
ReplicationStartedDateTime *string
// Wave aggregated status total applications amount.
TotalApplications int64
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isSsmExternalParameter() {}
|