aws-sdk-mgn 1.17.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1116,6 +1116,117 @@ module Aws::Mgn
1116
1116
  include Aws::Structure
1117
1117
  end
1118
1118
 
1119
+ # Export errors data.
1120
+ #
1121
+ # @!attribute [rw] raw_error
1122
+ # Export errors data raw error.
1123
+ # @return [String]
1124
+ #
1125
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportErrorData AWS API Documentation
1126
+ #
1127
+ class ExportErrorData < Struct.new(
1128
+ :raw_error)
1129
+ SENSITIVE = []
1130
+ include Aws::Structure
1131
+ end
1132
+
1133
+ # Export task.
1134
+ #
1135
+ # @!attribute [rw] creation_date_time
1136
+ # Export task creation datetime.
1137
+ # @return [String]
1138
+ #
1139
+ # @!attribute [rw] end_date_time
1140
+ # Export task end datetime.
1141
+ # @return [String]
1142
+ #
1143
+ # @!attribute [rw] export_id
1144
+ # Export task id.
1145
+ # @return [String]
1146
+ #
1147
+ # @!attribute [rw] progress_percentage
1148
+ # Export task progress percentage.
1149
+ # @return [Float]
1150
+ #
1151
+ # @!attribute [rw] s3_bucket
1152
+ # Export task s3 bucket.
1153
+ # @return [String]
1154
+ #
1155
+ # @!attribute [rw] s3_bucket_owner
1156
+ # Export task s3 bucket owner.
1157
+ # @return [String]
1158
+ #
1159
+ # @!attribute [rw] s3_key
1160
+ # Export task s3 key.
1161
+ # @return [String]
1162
+ #
1163
+ # @!attribute [rw] status
1164
+ # Export task status.
1165
+ # @return [String]
1166
+ #
1167
+ # @!attribute [rw] summary
1168
+ # Export task summary.
1169
+ # @return [Types::ExportTaskSummary]
1170
+ #
1171
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportTask AWS API Documentation
1172
+ #
1173
+ class ExportTask < Struct.new(
1174
+ :creation_date_time,
1175
+ :end_date_time,
1176
+ :export_id,
1177
+ :progress_percentage,
1178
+ :s3_bucket,
1179
+ :s3_bucket_owner,
1180
+ :s3_key,
1181
+ :status,
1182
+ :summary)
1183
+ SENSITIVE = []
1184
+ include Aws::Structure
1185
+ end
1186
+
1187
+ # Export task error.
1188
+ #
1189
+ # @!attribute [rw] error_data
1190
+ # Export task error data.
1191
+ # @return [Types::ExportErrorData]
1192
+ #
1193
+ # @!attribute [rw] error_date_time
1194
+ # Export task error datetime.
1195
+ # @return [String]
1196
+ #
1197
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportTaskError AWS API Documentation
1198
+ #
1199
+ class ExportTaskError < Struct.new(
1200
+ :error_data,
1201
+ :error_date_time)
1202
+ SENSITIVE = []
1203
+ include Aws::Structure
1204
+ end
1205
+
1206
+ # Export task summary.
1207
+ #
1208
+ # @!attribute [rw] applications_count
1209
+ # Export task summary applications count.
1210
+ # @return [Integer]
1211
+ #
1212
+ # @!attribute [rw] servers_count
1213
+ # Export task summary servers count.
1214
+ # @return [Integer]
1215
+ #
1216
+ # @!attribute [rw] waves_count
1217
+ # Export task summary waves count.
1218
+ # @return [Integer]
1219
+ #
1220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportTaskSummary AWS API Documentation
1221
+ #
1222
+ class ExportTaskSummary < Struct.new(
1223
+ :applications_count,
1224
+ :servers_count,
1225
+ :waves_count)
1226
+ SENSITIVE = []
1227
+ include Aws::Structure
1228
+ end
1229
+
1119
1230
  # @!attribute [rw] source_server_id
1120
1231
  # Request to finalize Cutover by Source Server ID.
1121
1232
  # @return [String]
@@ -1186,6 +1297,194 @@ module Aws::Mgn
1186
1297
  include Aws::Structure
1187
1298
  end
1188
1299
 
1300
+ # Import error data.
1301
+ #
1302
+ # @!attribute [rw] application_id
1303
+ # Import error data application ID.
1304
+ # @return [String]
1305
+ #
1306
+ # @!attribute [rw] ec2_launch_template_id
1307
+ # Import error data ec2 LaunchTemplate ID.
1308
+ # @return [String]
1309
+ #
1310
+ # @!attribute [rw] raw_error
1311
+ # Import error data raw error.
1312
+ # @return [String]
1313
+ #
1314
+ # @!attribute [rw] row_number
1315
+ # Import error data row number.
1316
+ # @return [Integer]
1317
+ #
1318
+ # @!attribute [rw] source_server_id
1319
+ # Import error data source server ID.
1320
+ # @return [String]
1321
+ #
1322
+ # @!attribute [rw] wave_id
1323
+ # Import error data wave id.
1324
+ # @return [String]
1325
+ #
1326
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportErrorData AWS API Documentation
1327
+ #
1328
+ class ImportErrorData < Struct.new(
1329
+ :application_id,
1330
+ :ec2_launch_template_id,
1331
+ :raw_error,
1332
+ :row_number,
1333
+ :source_server_id,
1334
+ :wave_id)
1335
+ SENSITIVE = []
1336
+ include Aws::Structure
1337
+ end
1338
+
1339
+ # Import task.
1340
+ #
1341
+ # @!attribute [rw] creation_date_time
1342
+ # Import task creation datetime.
1343
+ # @return [String]
1344
+ #
1345
+ # @!attribute [rw] end_date_time
1346
+ # Import task end datetime.
1347
+ # @return [String]
1348
+ #
1349
+ # @!attribute [rw] import_id
1350
+ # Import task id.
1351
+ # @return [String]
1352
+ #
1353
+ # @!attribute [rw] progress_percentage
1354
+ # Import task progress percentage.
1355
+ # @return [Float]
1356
+ #
1357
+ # @!attribute [rw] s3_bucket_source
1358
+ # Import task s3 bucket source.
1359
+ # @return [Types::S3BucketSource]
1360
+ #
1361
+ # @!attribute [rw] status
1362
+ # Import task status.
1363
+ # @return [String]
1364
+ #
1365
+ # @!attribute [rw] summary
1366
+ # Import task summary.
1367
+ # @return [Types::ImportTaskSummary]
1368
+ #
1369
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTask AWS API Documentation
1370
+ #
1371
+ class ImportTask < Struct.new(
1372
+ :creation_date_time,
1373
+ :end_date_time,
1374
+ :import_id,
1375
+ :progress_percentage,
1376
+ :s3_bucket_source,
1377
+ :status,
1378
+ :summary)
1379
+ SENSITIVE = []
1380
+ include Aws::Structure
1381
+ end
1382
+
1383
+ # Import task error.
1384
+ #
1385
+ # @!attribute [rw] error_data
1386
+ # Import task error data.
1387
+ # @return [Types::ImportErrorData]
1388
+ #
1389
+ # @!attribute [rw] error_date_time
1390
+ # Import task error datetime.
1391
+ # @return [String]
1392
+ #
1393
+ # @!attribute [rw] error_type
1394
+ # Import task error type.
1395
+ # @return [String]
1396
+ #
1397
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskError AWS API Documentation
1398
+ #
1399
+ class ImportTaskError < Struct.new(
1400
+ :error_data,
1401
+ :error_date_time,
1402
+ :error_type)
1403
+ SENSITIVE = []
1404
+ include Aws::Structure
1405
+ end
1406
+
1407
+ # Import task summary.
1408
+ #
1409
+ # @!attribute [rw] applications
1410
+ # Import task summary applications.
1411
+ # @return [Types::ImportTaskSummaryApplications]
1412
+ #
1413
+ # @!attribute [rw] servers
1414
+ # Import task summary servers.
1415
+ # @return [Types::ImportTaskSummaryServers]
1416
+ #
1417
+ # @!attribute [rw] waves
1418
+ # Import task summary waves.
1419
+ # @return [Types::ImportTaskSummaryWaves]
1420
+ #
1421
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummary AWS API Documentation
1422
+ #
1423
+ class ImportTaskSummary < Struct.new(
1424
+ :applications,
1425
+ :servers,
1426
+ :waves)
1427
+ SENSITIVE = []
1428
+ include Aws::Structure
1429
+ end
1430
+
1431
+ # Import task summary applications.
1432
+ #
1433
+ # @!attribute [rw] created_count
1434
+ # Import task summary applications created count.
1435
+ # @return [Integer]
1436
+ #
1437
+ # @!attribute [rw] modified_count
1438
+ # Import task summary applications modified count.
1439
+ # @return [Integer]
1440
+ #
1441
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryApplications AWS API Documentation
1442
+ #
1443
+ class ImportTaskSummaryApplications < Struct.new(
1444
+ :created_count,
1445
+ :modified_count)
1446
+ SENSITIVE = []
1447
+ include Aws::Structure
1448
+ end
1449
+
1450
+ # Import task summary servers.
1451
+ #
1452
+ # @!attribute [rw] created_count
1453
+ # Import task summary servers created count.
1454
+ # @return [Integer]
1455
+ #
1456
+ # @!attribute [rw] modified_count
1457
+ # Import task summary servers modified count.
1458
+ # @return [Integer]
1459
+ #
1460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryServers AWS API Documentation
1461
+ #
1462
+ class ImportTaskSummaryServers < Struct.new(
1463
+ :created_count,
1464
+ :modified_count)
1465
+ SENSITIVE = []
1466
+ include Aws::Structure
1467
+ end
1468
+
1469
+ # Import task summery waves.
1470
+ #
1471
+ # @!attribute [rw] created_count
1472
+ # Import task summery waves created count.
1473
+ # @return [Integer]
1474
+ #
1475
+ # @!attribute [rw] modified_count
1476
+ # Import task summery waves modified count.
1477
+ # @return [Integer]
1478
+ #
1479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryWaves AWS API Documentation
1480
+ #
1481
+ class ImportTaskSummaryWaves < Struct.new(
1482
+ :created_count,
1483
+ :modified_count)
1484
+ SENSITIVE = []
1485
+ include Aws::Structure
1486
+ end
1487
+
1189
1488
  # @api private
1190
1489
  #
1191
1490
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/InitializeServiceRequest AWS API Documentation
@@ -1829,6 +2128,206 @@ module Aws::Mgn
1829
2128
  include Aws::Structure
1830
2129
  end
1831
2130
 
2131
+ # List export errors request.
2132
+ #
2133
+ # @!attribute [rw] export_id
2134
+ # List export errors request export id.
2135
+ # @return [String]
2136
+ #
2137
+ # @!attribute [rw] max_results
2138
+ # List export errors request max results.
2139
+ # @return [Integer]
2140
+ #
2141
+ # @!attribute [rw] next_token
2142
+ # List export errors request next token.
2143
+ # @return [String]
2144
+ #
2145
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportErrorsRequest AWS API Documentation
2146
+ #
2147
+ class ListExportErrorsRequest < Struct.new(
2148
+ :export_id,
2149
+ :max_results,
2150
+ :next_token)
2151
+ SENSITIVE = []
2152
+ include Aws::Structure
2153
+ end
2154
+
2155
+ # List export errors response.
2156
+ #
2157
+ # @!attribute [rw] items
2158
+ # List export errors response items.
2159
+ # @return [Array<Types::ExportTaskError>]
2160
+ #
2161
+ # @!attribute [rw] next_token
2162
+ # List export errors response next token.
2163
+ # @return [String]
2164
+ #
2165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportErrorsResponse AWS API Documentation
2166
+ #
2167
+ class ListExportErrorsResponse < Struct.new(
2168
+ :items,
2169
+ :next_token)
2170
+ SENSITIVE = []
2171
+ include Aws::Structure
2172
+ end
2173
+
2174
+ # List export request.
2175
+ #
2176
+ # @!attribute [rw] filters
2177
+ # List exports request filters.
2178
+ # @return [Types::ListExportsRequestFilters]
2179
+ #
2180
+ # @!attribute [rw] max_results
2181
+ # List export request max results.
2182
+ # @return [Integer]
2183
+ #
2184
+ # @!attribute [rw] next_token
2185
+ # List export request next token.
2186
+ # @return [String]
2187
+ #
2188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportsRequest AWS API Documentation
2189
+ #
2190
+ class ListExportsRequest < Struct.new(
2191
+ :filters,
2192
+ :max_results,
2193
+ :next_token)
2194
+ SENSITIVE = []
2195
+ include Aws::Structure
2196
+ end
2197
+
2198
+ # List exports request filters.
2199
+ #
2200
+ # @!attribute [rw] export_i_ds
2201
+ # List exports request filters export ids.
2202
+ # @return [Array<String>]
2203
+ #
2204
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportsRequestFilters AWS API Documentation
2205
+ #
2206
+ class ListExportsRequestFilters < Struct.new(
2207
+ :export_i_ds)
2208
+ SENSITIVE = []
2209
+ include Aws::Structure
2210
+ end
2211
+
2212
+ # List export response.
2213
+ #
2214
+ # @!attribute [rw] items
2215
+ # List export response items.
2216
+ # @return [Array<Types::ExportTask>]
2217
+ #
2218
+ # @!attribute [rw] next_token
2219
+ # List export response next token.
2220
+ # @return [String]
2221
+ #
2222
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportsResponse AWS API Documentation
2223
+ #
2224
+ class ListExportsResponse < Struct.new(
2225
+ :items,
2226
+ :next_token)
2227
+ SENSITIVE = []
2228
+ include Aws::Structure
2229
+ end
2230
+
2231
+ # List import errors request.
2232
+ #
2233
+ # @!attribute [rw] import_id
2234
+ # List import errors request import id.
2235
+ # @return [String]
2236
+ #
2237
+ # @!attribute [rw] max_results
2238
+ # List import errors request max results.
2239
+ # @return [Integer]
2240
+ #
2241
+ # @!attribute [rw] next_token
2242
+ # List import errors request next token.
2243
+ # @return [String]
2244
+ #
2245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportErrorsRequest AWS API Documentation
2246
+ #
2247
+ class ListImportErrorsRequest < Struct.new(
2248
+ :import_id,
2249
+ :max_results,
2250
+ :next_token)
2251
+ SENSITIVE = []
2252
+ include Aws::Structure
2253
+ end
2254
+
2255
+ # List imports errors response.
2256
+ #
2257
+ # @!attribute [rw] items
2258
+ # List imports errors response items.
2259
+ # @return [Array<Types::ImportTaskError>]
2260
+ #
2261
+ # @!attribute [rw] next_token
2262
+ # List imports errors response next token.
2263
+ # @return [String]
2264
+ #
2265
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportErrorsResponse AWS API Documentation
2266
+ #
2267
+ class ListImportErrorsResponse < Struct.new(
2268
+ :items,
2269
+ :next_token)
2270
+ SENSITIVE = []
2271
+ include Aws::Structure
2272
+ end
2273
+
2274
+ # List imports request.
2275
+ #
2276
+ # @!attribute [rw] filters
2277
+ # List imports request filters.
2278
+ # @return [Types::ListImportsRequestFilters]
2279
+ #
2280
+ # @!attribute [rw] max_results
2281
+ # List imports request max results.
2282
+ # @return [Integer]
2283
+ #
2284
+ # @!attribute [rw] next_token
2285
+ # List imports request next token.
2286
+ # @return [String]
2287
+ #
2288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportsRequest AWS API Documentation
2289
+ #
2290
+ class ListImportsRequest < Struct.new(
2291
+ :filters,
2292
+ :max_results,
2293
+ :next_token)
2294
+ SENSITIVE = []
2295
+ include Aws::Structure
2296
+ end
2297
+
2298
+ # List imports request filters.
2299
+ #
2300
+ # @!attribute [rw] import_i_ds
2301
+ # List imports request filters import IDs.
2302
+ # @return [Array<String>]
2303
+ #
2304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportsRequestFilters AWS API Documentation
2305
+ #
2306
+ class ListImportsRequestFilters < Struct.new(
2307
+ :import_i_ds)
2308
+ SENSITIVE = []
2309
+ include Aws::Structure
2310
+ end
2311
+
2312
+ # List import response.
2313
+ #
2314
+ # @!attribute [rw] items
2315
+ # List import response items.
2316
+ # @return [Array<Types::ImportTask>]
2317
+ #
2318
+ # @!attribute [rw] next_token
2319
+ # List import response next token.
2320
+ # @return [String]
2321
+ #
2322
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportsResponse AWS API Documentation
2323
+ #
2324
+ class ListImportsResponse < Struct.new(
2325
+ :items,
2326
+ :next_token)
2327
+ SENSITIVE = []
2328
+ include Aws::Structure
2329
+ end
2330
+
1832
2331
  # @!attribute [rw] filters
1833
2332
  # Filters to apply when listing source server post migration custom
1834
2333
  # actions.
@@ -2154,6 +2653,14 @@ module Aws::Mgn
2154
2653
  # Source server post migration custom action active status.
2155
2654
  # @return [Boolean]
2156
2655
  #
2656
+ # @!attribute [rw] category
2657
+ # Source server post migration custom action category.
2658
+ # @return [String]
2659
+ #
2660
+ # @!attribute [rw] description
2661
+ # Source server post migration custom action description.
2662
+ # @return [String]
2663
+ #
2157
2664
  # @!attribute [rw] document_identifier
2158
2665
  # Source server post migration custom action document identifier.
2159
2666
  # @return [String]
@@ -2162,6 +2669,10 @@ module Aws::Mgn
2162
2669
  # Source server post migration custom action document version.
2163
2670
  # @return [String]
2164
2671
  #
2672
+ # @!attribute [rw] external_parameters
2673
+ # Source server post migration custom action external parameters.
2674
+ # @return [Hash<String,Types::SsmExternalParameter>]
2675
+ #
2165
2676
  # @!attribute [rw] must_succeed_for_cutover
2166
2677
  # Source server post migration custom action must succeed for cutover.
2167
2678
  # @return [Boolean]
@@ -2188,8 +2699,11 @@ module Aws::Mgn
2188
2699
  :action_id,
2189
2700
  :action_name,
2190
2701
  :active,
2702
+ :category,
2703
+ :description,
2191
2704
  :document_identifier,
2192
2705
  :document_version,
2706
+ :external_parameters,
2193
2707
  :must_succeed_for_cutover,
2194
2708
  :order,
2195
2709
  :parameters,
@@ -2211,6 +2725,14 @@ module Aws::Mgn
2211
2725
  # Template post migration custom action active status.
2212
2726
  # @return [Boolean]
2213
2727
  #
2728
+ # @!attribute [rw] category
2729
+ # Template post migration custom action category.
2730
+ # @return [String]
2731
+ #
2732
+ # @!attribute [rw] description
2733
+ # Template post migration custom action description.
2734
+ # @return [String]
2735
+ #
2214
2736
  # @!attribute [rw] document_identifier
2215
2737
  # Template post migration custom action document identifier.
2216
2738
  # @return [String]
@@ -2219,6 +2741,10 @@ module Aws::Mgn
2219
2741
  # Template post migration custom action document version.
2220
2742
  # @return [String]
2221
2743
  #
2744
+ # @!attribute [rw] external_parameters
2745
+ # Template post migration custom action external parameters.
2746
+ # @return [Hash<String,Types::SsmExternalParameter>]
2747
+ #
2222
2748
  # @!attribute [rw] launch_configuration_template_id
2223
2749
  # Launch configuration template ID.
2224
2750
  # @return [String]
@@ -2250,8 +2776,11 @@ module Aws::Mgn
2250
2776
  :action_id,
2251
2777
  :action_name,
2252
2778
  :active,
2779
+ :category,
2780
+ :description,
2253
2781
  :document_identifier,
2254
2782
  :document_version,
2783
+ :external_parameters,
2255
2784
  :launch_configuration_template_id,
2256
2785
  :must_succeed_for_cutover,
2257
2786
  :operating_system,
@@ -2545,6 +3074,30 @@ module Aws::Mgn
2545
3074
  include Aws::Structure
2546
3075
  end
2547
3076
 
3077
+ # S3 bucket source.
3078
+ #
3079
+ # @!attribute [rw] s3_bucket
3080
+ # S3 bucket source s3 bucket.
3081
+ # @return [String]
3082
+ #
3083
+ # @!attribute [rw] s3_bucket_owner
3084
+ # S3 bucket source s3 bucket owner.
3085
+ # @return [String]
3086
+ #
3087
+ # @!attribute [rw] s3_key
3088
+ # S3 bucket source s3 key.
3089
+ # @return [String]
3090
+ #
3091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/S3BucketSource AWS API Documentation
3092
+ #
3093
+ class S3BucketSource < Struct.new(
3094
+ :s3_bucket,
3095
+ :s3_bucket_owner,
3096
+ :s3_key)
3097
+ SENSITIVE = []
3098
+ include Aws::Structure
3099
+ end
3100
+
2548
3101
  # The request could not be completed because its exceeded the service
2549
3102
  # quota.
2550
3103
  #
@@ -2649,6 +3202,10 @@ module Aws::Mgn
2649
3202
  # Source server data replication info.
2650
3203
  # @return [Types::DataReplicationInfo]
2651
3204
  #
3205
+ # @!attribute [rw] fqdn_for_action_framework
3206
+ # Source server fqdn for action framework.
3207
+ # @return [String]
3208
+ #
2652
3209
  # @!attribute [rw] is_archived
2653
3210
  # Source server archived status.
2654
3211
  # @return [Boolean]
@@ -2677,6 +3234,10 @@ module Aws::Mgn
2677
3234
  # Source server Tags.
2678
3235
  # @return [Hash<String,String>]
2679
3236
  #
3237
+ # @!attribute [rw] user_provided_id
3238
+ # Source server user provided ID.
3239
+ # @return [String]
3240
+ #
2680
3241
  # @!attribute [rw] vcenter_client_id
2681
3242
  # Source server vCenter client id.
2682
3243
  # @return [String]
@@ -2687,6 +3248,7 @@ module Aws::Mgn
2687
3248
  :application_id,
2688
3249
  :arn,
2689
3250
  :data_replication_info,
3251
+ :fqdn_for_action_framework,
2690
3252
  :is_archived,
2691
3253
  :launched_instance,
2692
3254
  :life_cycle,
@@ -2694,6 +3256,7 @@ module Aws::Mgn
2694
3256
  :source_properties,
2695
3257
  :source_server_id,
2696
3258
  :tags,
3259
+ :user_provided_id,
2697
3260
  :vcenter_client_id)
2698
3261
  SENSITIVE = [:tags]
2699
3262
  include Aws::Structure
@@ -2711,6 +3274,14 @@ module Aws::Mgn
2711
3274
  # Source server post migration custom action active status.
2712
3275
  # @return [Boolean]
2713
3276
  #
3277
+ # @!attribute [rw] category
3278
+ # Source server post migration custom action category.
3279
+ # @return [String]
3280
+ #
3281
+ # @!attribute [rw] description
3282
+ # Source server post migration custom action description.
3283
+ # @return [String]
3284
+ #
2714
3285
  # @!attribute [rw] document_identifier
2715
3286
  # Source server post migration custom action document identifier.
2716
3287
  # @return [String]
@@ -2719,6 +3290,10 @@ module Aws::Mgn
2719
3290
  # Source server post migration custom action document version.
2720
3291
  # @return [String]
2721
3292
  #
3293
+ # @!attribute [rw] external_parameters
3294
+ # Source server post migration custom action external parameters.
3295
+ # @return [Hash<String,Types::SsmExternalParameter>]
3296
+ #
2722
3297
  # @!attribute [rw] must_succeed_for_cutover
2723
3298
  # Source server post migration custom action must succeed for cutover.
2724
3299
  # @return [Boolean]
@@ -2741,8 +3316,11 @@ module Aws::Mgn
2741
3316
  :action_id,
2742
3317
  :action_name,
2743
3318
  :active,
3319
+ :category,
3320
+ :description,
2744
3321
  :document_identifier,
2745
3322
  :document_version,
3323
+ :external_parameters,
2746
3324
  :must_succeed_for_cutover,
2747
3325
  :order,
2748
3326
  :parameters,
@@ -2771,6 +3349,10 @@ module Aws::Mgn
2771
3349
  # User-friendly name for the AWS Systems Manager Document.
2772
3350
  # @return [String]
2773
3351
  #
3352
+ # @!attribute [rw] external_parameters
3353
+ # AWS Systems Manager Document external parameters.
3354
+ # @return [Hash<String,Types::SsmExternalParameter>]
3355
+ #
2774
3356
  # @!attribute [rw] must_succeed_for_cutover
2775
3357
  # If true, Cutover will not be enabled if the document has failed.
2776
3358
  # @return [Boolean]
@@ -2791,6 +3373,7 @@ module Aws::Mgn
2791
3373
  #
2792
3374
  class SsmDocument < Struct.new(
2793
3375
  :action_name,
3376
+ :external_parameters,
2794
3377
  :must_succeed_for_cutover,
2795
3378
  :parameters,
2796
3379
  :ssm_document_name,
@@ -2799,6 +3382,29 @@ module Aws::Mgn
2799
3382
  include Aws::Structure
2800
3383
  end
2801
3384
 
3385
+ # AWS Systems Manager Document external parameter.
3386
+ #
3387
+ # @note SsmExternalParameter is a union - when making an API calls you must set exactly one of the members.
3388
+ #
3389
+ # @note SsmExternalParameter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SsmExternalParameter corresponding to the set member.
3390
+ #
3391
+ # @!attribute [rw] dynamic_path
3392
+ # AWS Systems Manager Document external parameters dynamic path.
3393
+ # @return [String]
3394
+ #
3395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmExternalParameter AWS API Documentation
3396
+ #
3397
+ class SsmExternalParameter < Struct.new(
3398
+ :dynamic_path,
3399
+ :unknown)
3400
+ SENSITIVE = []
3401
+ include Aws::Structure
3402
+ include Aws::Structure::Union
3403
+
3404
+ class DynamicPath < SsmExternalParameter; end
3405
+ class Unknown < SsmExternalParameter; end
3406
+ end
3407
+
2802
3408
  # AWS Systems Manager Parameter Store parameter.
2803
3409
  #
2804
3410
  # @!attribute [rw] parameter_name
@@ -2847,6 +3453,80 @@ module Aws::Mgn
2847
3453
  include Aws::Structure
2848
3454
  end
2849
3455
 
3456
+ # Start export request.
3457
+ #
3458
+ # @!attribute [rw] s3_bucket
3459
+ # Start export request s3 bucket.
3460
+ # @return [String]
3461
+ #
3462
+ # @!attribute [rw] s3_bucket_owner
3463
+ # Start export request s3 bucket owner.
3464
+ # @return [String]
3465
+ #
3466
+ # @!attribute [rw] s3_key
3467
+ # Start export request s3key.
3468
+ # @return [String]
3469
+ #
3470
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartExportRequest AWS API Documentation
3471
+ #
3472
+ class StartExportRequest < Struct.new(
3473
+ :s3_bucket,
3474
+ :s3_bucket_owner,
3475
+ :s3_key)
3476
+ SENSITIVE = []
3477
+ include Aws::Structure
3478
+ end
3479
+
3480
+ # Start export response.
3481
+ #
3482
+ # @!attribute [rw] export_task
3483
+ # Start export response export task.
3484
+ # @return [Types::ExportTask]
3485
+ #
3486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartExportResponse AWS API Documentation
3487
+ #
3488
+ class StartExportResponse < Struct.new(
3489
+ :export_task)
3490
+ SENSITIVE = []
3491
+ include Aws::Structure
3492
+ end
3493
+
3494
+ # Start import request.
3495
+ #
3496
+ # @!attribute [rw] client_token
3497
+ # Start import request client token.
3498
+ #
3499
+ # **A suitable default value is auto-generated.** You should normally
3500
+ # not need to pass this option.
3501
+ # @return [String]
3502
+ #
3503
+ # @!attribute [rw] s3_bucket_source
3504
+ # Start import request s3 bucket source.
3505
+ # @return [Types::S3BucketSource]
3506
+ #
3507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartImportRequest AWS API Documentation
3508
+ #
3509
+ class StartImportRequest < Struct.new(
3510
+ :client_token,
3511
+ :s3_bucket_source)
3512
+ SENSITIVE = []
3513
+ include Aws::Structure
3514
+ end
3515
+
3516
+ # Start import response.
3517
+ #
3518
+ # @!attribute [rw] import_task
3519
+ # Start import response import task.
3520
+ # @return [Types::ImportTask]
3521
+ #
3522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartImportResponse AWS API Documentation
3523
+ #
3524
+ class StartImportResponse < Struct.new(
3525
+ :import_task)
3526
+ SENSITIVE = []
3527
+ include Aws::Structure
3528
+ end
3529
+
2850
3530
  # @!attribute [rw] source_server_id
2851
3531
  # ID of source server on which to start replication.
2852
3532
  # @return [String]
@@ -2917,6 +3597,14 @@ module Aws::Mgn
2917
3597
  # Template post migration custom action active status.
2918
3598
  # @return [Boolean]
2919
3599
  #
3600
+ # @!attribute [rw] category
3601
+ # Template post migration custom action category.
3602
+ # @return [String]
3603
+ #
3604
+ # @!attribute [rw] description
3605
+ # Template post migration custom action description.
3606
+ # @return [String]
3607
+ #
2920
3608
  # @!attribute [rw] document_identifier
2921
3609
  # Template post migration custom action document identifier.
2922
3610
  # @return [String]
@@ -2925,6 +3613,10 @@ module Aws::Mgn
2925
3613
  # Template post migration custom action document version.
2926
3614
  # @return [String]
2927
3615
  #
3616
+ # @!attribute [rw] external_parameters
3617
+ # Template post migration custom action external parameters.
3618
+ # @return [Hash<String,Types::SsmExternalParameter>]
3619
+ #
2928
3620
  # @!attribute [rw] must_succeed_for_cutover
2929
3621
  # Template post migration custom action must succeed for cutover.
2930
3622
  # @return [Boolean]
@@ -2952,8 +3644,11 @@ module Aws::Mgn
2952
3644
  :action_id,
2953
3645
  :action_name,
2954
3646
  :active,
3647
+ :category,
3648
+ :description,
2955
3649
  :document_identifier,
2956
3650
  :document_version,
3651
+ :external_parameters,
2957
3652
  :must_succeed_for_cutover,
2958
3653
  :operating_system,
2959
3654
  :order,