aws-sdk-mgn 1.21.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mgn/client.rb +543 -1
- data/lib/aws-sdk-mgn/client_api.rb +141 -7
- data/lib/aws-sdk-mgn/endpoints.rb +56 -0
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-mgn/types.rb +330 -5
- data/lib/aws-sdk-mgn.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-mgn/types.rb
CHANGED
@@ -113,6 +113,10 @@ module Aws::Mgn
|
|
113
113
|
include Aws::Structure
|
114
114
|
end
|
115
115
|
|
116
|
+
# @!attribute [rw] account_id
|
117
|
+
# Account ID.
|
118
|
+
# @return [String]
|
119
|
+
#
|
116
120
|
# @!attribute [rw] application_id
|
117
121
|
# Application ID.
|
118
122
|
# @return [String]
|
@@ -120,11 +124,16 @@ module Aws::Mgn
|
|
120
124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ArchiveApplicationRequest AWS API Documentation
|
121
125
|
#
|
122
126
|
class ArchiveApplicationRequest < Struct.new(
|
127
|
+
:account_id,
|
123
128
|
:application_id)
|
124
129
|
SENSITIVE = []
|
125
130
|
include Aws::Structure
|
126
131
|
end
|
127
132
|
|
133
|
+
# @!attribute [rw] account_id
|
134
|
+
# Account ID.
|
135
|
+
# @return [String]
|
136
|
+
#
|
128
137
|
# @!attribute [rw] wave_id
|
129
138
|
# Wave ID.
|
130
139
|
# @return [String]
|
@@ -132,11 +141,16 @@ module Aws::Mgn
|
|
132
141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ArchiveWaveRequest AWS API Documentation
|
133
142
|
#
|
134
143
|
class ArchiveWaveRequest < Struct.new(
|
144
|
+
:account_id,
|
135
145
|
:wave_id)
|
136
146
|
SENSITIVE = []
|
137
147
|
include Aws::Structure
|
138
148
|
end
|
139
149
|
|
150
|
+
# @!attribute [rw] account_id
|
151
|
+
# Account ID.
|
152
|
+
# @return [String]
|
153
|
+
#
|
140
154
|
# @!attribute [rw] application_i_ds
|
141
155
|
# Application IDs list.
|
142
156
|
# @return [Array<String>]
|
@@ -148,6 +162,7 @@ module Aws::Mgn
|
|
148
162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateApplicationsRequest AWS API Documentation
|
149
163
|
#
|
150
164
|
class AssociateApplicationsRequest < Struct.new(
|
165
|
+
:account_id,
|
151
166
|
:application_i_ds,
|
152
167
|
:wave_id)
|
153
168
|
SENSITIVE = []
|
@@ -158,6 +173,10 @@ module Aws::Mgn
|
|
158
173
|
#
|
159
174
|
class AssociateApplicationsResponse < Aws::EmptyStructure; end
|
160
175
|
|
176
|
+
# @!attribute [rw] account_id
|
177
|
+
# Account ID.
|
178
|
+
# @return [String]
|
179
|
+
#
|
161
180
|
# @!attribute [rw] application_id
|
162
181
|
# Application ID.
|
163
182
|
# @return [String]
|
@@ -169,6 +188,7 @@ module Aws::Mgn
|
|
169
188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateSourceServersRequest AWS API Documentation
|
170
189
|
#
|
171
190
|
class AssociateSourceServersRequest < Struct.new(
|
191
|
+
:account_id,
|
172
192
|
:application_id,
|
173
193
|
:source_server_i_ds)
|
174
194
|
SENSITIVE = []
|
@@ -198,6 +218,10 @@ module Aws::Mgn
|
|
198
218
|
include Aws::Structure
|
199
219
|
end
|
200
220
|
|
221
|
+
# @!attribute [rw] account_id
|
222
|
+
# The request to change the source server migration account ID.
|
223
|
+
# @return [String]
|
224
|
+
#
|
201
225
|
# @!attribute [rw] life_cycle
|
202
226
|
# The request to change the source server migration lifecycle state.
|
203
227
|
# @return [Types::ChangeServerLifeCycleStateSourceServerLifecycle]
|
@@ -210,6 +234,7 @@ module Aws::Mgn
|
|
210
234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ChangeServerLifeCycleStateRequest AWS API Documentation
|
211
235
|
#
|
212
236
|
class ChangeServerLifeCycleStateRequest < Struct.new(
|
237
|
+
:account_id,
|
213
238
|
:life_cycle,
|
214
239
|
:source_server_id)
|
215
240
|
SENSITIVE = []
|
@@ -263,6 +288,10 @@ module Aws::Mgn
|
|
263
288
|
include Aws::Structure
|
264
289
|
end
|
265
290
|
|
291
|
+
# @!attribute [rw] account_id
|
292
|
+
# Account ID.
|
293
|
+
# @return [String]
|
294
|
+
#
|
266
295
|
# @!attribute [rw] description
|
267
296
|
# Application description.
|
268
297
|
# @return [String]
|
@@ -278,6 +307,7 @@ module Aws::Mgn
|
|
278
307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateApplicationRequest AWS API Documentation
|
279
308
|
#
|
280
309
|
class CreateApplicationRequest < Struct.new(
|
310
|
+
:account_id,
|
281
311
|
:description,
|
282
312
|
:name,
|
283
313
|
:tags)
|
@@ -428,6 +458,11 @@ module Aws::Mgn
|
|
428
458
|
# Settings template creation.
|
429
459
|
# @return [Boolean]
|
430
460
|
#
|
461
|
+
# @!attribute [rw] use_fips_endpoint
|
462
|
+
# Request to use Fips Endpoint during Replication Settings template
|
463
|
+
# creation.
|
464
|
+
# @return [Boolean]
|
465
|
+
#
|
431
466
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateReplicationConfigurationTemplateRequest AWS API Documentation
|
432
467
|
#
|
433
468
|
class CreateReplicationConfigurationTemplateRequest < Struct.new(
|
@@ -443,11 +478,16 @@ module Aws::Mgn
|
|
443
478
|
:staging_area_subnet_id,
|
444
479
|
:staging_area_tags,
|
445
480
|
:tags,
|
446
|
-
:use_dedicated_replication_server
|
481
|
+
:use_dedicated_replication_server,
|
482
|
+
:use_fips_endpoint)
|
447
483
|
SENSITIVE = [:staging_area_tags, :tags]
|
448
484
|
include Aws::Structure
|
449
485
|
end
|
450
486
|
|
487
|
+
# @!attribute [rw] account_id
|
488
|
+
# Account ID.
|
489
|
+
# @return [String]
|
490
|
+
#
|
451
491
|
# @!attribute [rw] description
|
452
492
|
# Wave description.
|
453
493
|
# @return [String]
|
@@ -463,6 +503,7 @@ module Aws::Mgn
|
|
463
503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateWaveRequest AWS API Documentation
|
464
504
|
#
|
465
505
|
class CreateWaveRequest < Struct.new(
|
506
|
+
:account_id,
|
466
507
|
:description,
|
467
508
|
:name,
|
468
509
|
:tags)
|
@@ -610,6 +651,10 @@ module Aws::Mgn
|
|
610
651
|
include Aws::Structure
|
611
652
|
end
|
612
653
|
|
654
|
+
# @!attribute [rw] account_id
|
655
|
+
# Account ID.
|
656
|
+
# @return [String]
|
657
|
+
#
|
613
658
|
# @!attribute [rw] application_id
|
614
659
|
# Application ID.
|
615
660
|
# @return [String]
|
@@ -617,6 +662,7 @@ module Aws::Mgn
|
|
617
662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteApplicationRequest AWS API Documentation
|
618
663
|
#
|
619
664
|
class DeleteApplicationRequest < Struct.new(
|
665
|
+
:account_id,
|
620
666
|
:application_id)
|
621
667
|
SENSITIVE = []
|
622
668
|
include Aws::Structure
|
@@ -626,6 +672,10 @@ module Aws::Mgn
|
|
626
672
|
#
|
627
673
|
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
628
674
|
|
675
|
+
# @!attribute [rw] account_id
|
676
|
+
# Request to delete Job from service by Account ID.
|
677
|
+
# @return [String]
|
678
|
+
#
|
629
679
|
# @!attribute [rw] job_id
|
630
680
|
# Request to delete Job from service by Job ID.
|
631
681
|
# @return [String]
|
@@ -633,6 +683,7 @@ module Aws::Mgn
|
|
633
683
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteJobRequest AWS API Documentation
|
634
684
|
#
|
635
685
|
class DeleteJobRequest < Struct.new(
|
686
|
+
:account_id,
|
636
687
|
:job_id)
|
637
688
|
SENSITIVE = []
|
638
689
|
include Aws::Structure
|
@@ -675,6 +726,10 @@ module Aws::Mgn
|
|
675
726
|
#
|
676
727
|
class DeleteReplicationConfigurationTemplateResponse < Aws::EmptyStructure; end
|
677
728
|
|
729
|
+
# @!attribute [rw] account_id
|
730
|
+
# Request to delete Source Server from service by Account ID.
|
731
|
+
# @return [String]
|
732
|
+
#
|
678
733
|
# @!attribute [rw] source_server_id
|
679
734
|
# Request to delete Source Server from service by Server ID.
|
680
735
|
# @return [String]
|
@@ -682,6 +737,7 @@ module Aws::Mgn
|
|
682
737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteSourceServerRequest AWS API Documentation
|
683
738
|
#
|
684
739
|
class DeleteSourceServerRequest < Struct.new(
|
740
|
+
:account_id,
|
685
741
|
:source_server_id)
|
686
742
|
SENSITIVE = []
|
687
743
|
include Aws::Structure
|
@@ -703,6 +759,10 @@ module Aws::Mgn
|
|
703
759
|
include Aws::Structure
|
704
760
|
end
|
705
761
|
|
762
|
+
# @!attribute [rw] account_id
|
763
|
+
# Account ID.
|
764
|
+
# @return [String]
|
765
|
+
#
|
706
766
|
# @!attribute [rw] wave_id
|
707
767
|
# Wave ID.
|
708
768
|
# @return [String]
|
@@ -710,6 +770,7 @@ module Aws::Mgn
|
|
710
770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteWaveRequest AWS API Documentation
|
711
771
|
#
|
712
772
|
class DeleteWaveRequest < Struct.new(
|
773
|
+
:account_id,
|
713
774
|
:wave_id)
|
714
775
|
SENSITIVE = []
|
715
776
|
include Aws::Structure
|
@@ -719,6 +780,10 @@ module Aws::Mgn
|
|
719
780
|
#
|
720
781
|
class DeleteWaveResponse < Aws::EmptyStructure; end
|
721
782
|
|
783
|
+
# @!attribute [rw] account_id
|
784
|
+
# Request to describe Job log Account ID.
|
785
|
+
# @return [String]
|
786
|
+
#
|
722
787
|
# @!attribute [rw] job_id
|
723
788
|
# Request to describe Job log job ID.
|
724
789
|
# @return [String]
|
@@ -734,6 +799,7 @@ module Aws::Mgn
|
|
734
799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobLogItemsRequest AWS API Documentation
|
735
800
|
#
|
736
801
|
class DescribeJobLogItemsRequest < Struct.new(
|
802
|
+
:account_id,
|
737
803
|
:job_id,
|
738
804
|
:max_results,
|
739
805
|
:next_token)
|
@@ -758,6 +824,10 @@ module Aws::Mgn
|
|
758
824
|
include Aws::Structure
|
759
825
|
end
|
760
826
|
|
827
|
+
# @!attribute [rw] account_id
|
828
|
+
# Request to describe job log items by Account ID.
|
829
|
+
# @return [String]
|
830
|
+
#
|
761
831
|
# @!attribute [rw] filters
|
762
832
|
# Request to describe Job log filters.
|
763
833
|
# @return [Types::DescribeJobsRequestFilters]
|
@@ -773,6 +843,7 @@ module Aws::Mgn
|
|
773
843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobsRequest AWS API Documentation
|
774
844
|
#
|
775
845
|
class DescribeJobsRequest < Struct.new(
|
846
|
+
:account_id,
|
776
847
|
:filters,
|
777
848
|
:max_results,
|
778
849
|
:next_token)
|
@@ -907,6 +978,10 @@ module Aws::Mgn
|
|
907
978
|
include Aws::Structure
|
908
979
|
end
|
909
980
|
|
981
|
+
# @!attribute [rw] account_id
|
982
|
+
# Request to filter Source Servers list by Accoun ID.
|
983
|
+
# @return [String]
|
984
|
+
#
|
910
985
|
# @!attribute [rw] filters
|
911
986
|
# Request to filter Source Servers list.
|
912
987
|
# @return [Types::DescribeSourceServersRequestFilters]
|
@@ -922,6 +997,7 @@ module Aws::Mgn
|
|
922
997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeSourceServersRequest AWS API Documentation
|
923
998
|
#
|
924
999
|
class DescribeSourceServersRequest < Struct.new(
|
1000
|
+
:account_id,
|
925
1001
|
:filters,
|
926
1002
|
:max_results,
|
927
1003
|
:next_token)
|
@@ -1014,6 +1090,10 @@ module Aws::Mgn
|
|
1014
1090
|
include Aws::Structure
|
1015
1091
|
end
|
1016
1092
|
|
1093
|
+
# @!attribute [rw] account_id
|
1094
|
+
# Account ID.
|
1095
|
+
# @return [String]
|
1096
|
+
#
|
1017
1097
|
# @!attribute [rw] application_i_ds
|
1018
1098
|
# Application IDs list.
|
1019
1099
|
# @return [Array<String>]
|
@@ -1025,6 +1105,7 @@ module Aws::Mgn
|
|
1025
1105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateApplicationsRequest AWS API Documentation
|
1026
1106
|
#
|
1027
1107
|
class DisassociateApplicationsRequest < Struct.new(
|
1108
|
+
:account_id,
|
1028
1109
|
:application_i_ds,
|
1029
1110
|
:wave_id)
|
1030
1111
|
SENSITIVE = []
|
@@ -1035,6 +1116,10 @@ module Aws::Mgn
|
|
1035
1116
|
#
|
1036
1117
|
class DisassociateApplicationsResponse < Aws::EmptyStructure; end
|
1037
1118
|
|
1119
|
+
# @!attribute [rw] account_id
|
1120
|
+
# Account ID.
|
1121
|
+
# @return [String]
|
1122
|
+
#
|
1038
1123
|
# @!attribute [rw] application_id
|
1039
1124
|
# Application ID.
|
1040
1125
|
# @return [String]
|
@@ -1046,6 +1131,7 @@ module Aws::Mgn
|
|
1046
1131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateSourceServersRequest AWS API Documentation
|
1047
1132
|
#
|
1048
1133
|
class DisassociateSourceServersRequest < Struct.new(
|
1134
|
+
:account_id,
|
1049
1135
|
:application_id,
|
1050
1136
|
:source_server_i_ds)
|
1051
1137
|
SENSITIVE = []
|
@@ -1056,6 +1142,10 @@ module Aws::Mgn
|
|
1056
1142
|
#
|
1057
1143
|
class DisassociateSourceServersResponse < Aws::EmptyStructure; end
|
1058
1144
|
|
1145
|
+
# @!attribute [rw] account_id
|
1146
|
+
# Request to disconnect Source Server from service by Account ID.
|
1147
|
+
# @return [String]
|
1148
|
+
#
|
1059
1149
|
# @!attribute [rw] source_server_id
|
1060
1150
|
# Request to disconnect Source Server from service by Server ID.
|
1061
1151
|
# @return [String]
|
@@ -1063,6 +1153,7 @@ module Aws::Mgn
|
|
1063
1153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisconnectFromServiceRequest AWS API Documentation
|
1064
1154
|
#
|
1065
1155
|
class DisconnectFromServiceRequest < Struct.new(
|
1156
|
+
:account_id,
|
1066
1157
|
:source_server_id)
|
1067
1158
|
SENSITIVE = []
|
1068
1159
|
include Aws::Structure
|
@@ -1227,6 +1318,10 @@ module Aws::Mgn
|
|
1227
1318
|
include Aws::Structure
|
1228
1319
|
end
|
1229
1320
|
|
1321
|
+
# @!attribute [rw] account_id
|
1322
|
+
# Request to finalize Cutover by Source Account ID.
|
1323
|
+
# @return [String]
|
1324
|
+
#
|
1230
1325
|
# @!attribute [rw] source_server_id
|
1231
1326
|
# Request to finalize Cutover by Source Server ID.
|
1232
1327
|
# @return [String]
|
@@ -1234,11 +1329,16 @@ module Aws::Mgn
|
|
1234
1329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/FinalizeCutoverRequest AWS API Documentation
|
1235
1330
|
#
|
1236
1331
|
class FinalizeCutoverRequest < Struct.new(
|
1332
|
+
:account_id,
|
1237
1333
|
:source_server_id)
|
1238
1334
|
SENSITIVE = []
|
1239
1335
|
include Aws::Structure
|
1240
1336
|
end
|
1241
1337
|
|
1338
|
+
# @!attribute [rw] account_id
|
1339
|
+
# Request to get Launch Configuration information by Account ID.
|
1340
|
+
# @return [String]
|
1341
|
+
#
|
1242
1342
|
# @!attribute [rw] source_server_id
|
1243
1343
|
# Request to get Launch Configuration information by Source Server ID.
|
1244
1344
|
# @return [String]
|
@@ -1246,11 +1346,16 @@ module Aws::Mgn
|
|
1246
1346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/GetLaunchConfigurationRequest AWS API Documentation
|
1247
1347
|
#
|
1248
1348
|
class GetLaunchConfigurationRequest < Struct.new(
|
1349
|
+
:account_id,
|
1249
1350
|
:source_server_id)
|
1250
1351
|
SENSITIVE = []
|
1251
1352
|
include Aws::Structure
|
1252
1353
|
end
|
1253
1354
|
|
1355
|
+
# @!attribute [rw] account_id
|
1356
|
+
# Request to get Replication Configuration by Account ID.
|
1357
|
+
# @return [String]
|
1358
|
+
#
|
1254
1359
|
# @!attribute [rw] source_server_id
|
1255
1360
|
# Request to get Replication Configuration by Source Server ID.
|
1256
1361
|
# @return [String]
|
@@ -1258,6 +1363,7 @@ module Aws::Mgn
|
|
1258
1363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/GetReplicationConfigurationRequest AWS API Documentation
|
1259
1364
|
#
|
1260
1365
|
class GetReplicationConfigurationRequest < Struct.new(
|
1366
|
+
:account_id,
|
1261
1367
|
:source_server_id)
|
1262
1368
|
SENSITIVE = []
|
1263
1369
|
include Aws::Structure
|
@@ -1299,6 +1405,10 @@ module Aws::Mgn
|
|
1299
1405
|
|
1300
1406
|
# Import error data.
|
1301
1407
|
#
|
1408
|
+
# @!attribute [rw] account_id
|
1409
|
+
# Import error data source account ID.
|
1410
|
+
# @return [String]
|
1411
|
+
#
|
1302
1412
|
# @!attribute [rw] application_id
|
1303
1413
|
# Import error data application ID.
|
1304
1414
|
# @return [String]
|
@@ -1326,6 +1436,7 @@ module Aws::Mgn
|
|
1326
1436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportErrorData AWS API Documentation
|
1327
1437
|
#
|
1328
1438
|
class ImportErrorData < Struct.new(
|
1439
|
+
:account_id,
|
1329
1440
|
:application_id,
|
1330
1441
|
:ec2_launch_template_id,
|
1331
1442
|
:raw_error,
|
@@ -2065,6 +2176,10 @@ module Aws::Mgn
|
|
2065
2176
|
include Aws::Structure
|
2066
2177
|
end
|
2067
2178
|
|
2179
|
+
# @!attribute [rw] account_id
|
2180
|
+
# Applications list Account ID.
|
2181
|
+
# @return [String]
|
2182
|
+
#
|
2068
2183
|
# @!attribute [rw] filters
|
2069
2184
|
# Applications list filters.
|
2070
2185
|
# @return [Types::ListApplicationsRequestFilters]
|
@@ -2080,6 +2195,7 @@ module Aws::Mgn
|
|
2080
2195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsRequest AWS API Documentation
|
2081
2196
|
#
|
2082
2197
|
class ListApplicationsRequest < Struct.new(
|
2198
|
+
:account_id,
|
2083
2199
|
:filters,
|
2084
2200
|
:max_results,
|
2085
2201
|
:next_token)
|
@@ -2328,6 +2444,49 @@ module Aws::Mgn
|
|
2328
2444
|
include Aws::Structure
|
2329
2445
|
end
|
2330
2446
|
|
2447
|
+
# List managed accounts request.
|
2448
|
+
#
|
2449
|
+
# @!attribute [rw] max_results
|
2450
|
+
# List managed accounts request max results.
|
2451
|
+
# @return [Integer]
|
2452
|
+
#
|
2453
|
+
# @!attribute [rw] next_token
|
2454
|
+
# List managed accounts request next token.
|
2455
|
+
# @return [String]
|
2456
|
+
#
|
2457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListManagedAccountsRequest AWS API Documentation
|
2458
|
+
#
|
2459
|
+
class ListManagedAccountsRequest < Struct.new(
|
2460
|
+
:max_results,
|
2461
|
+
:next_token)
|
2462
|
+
SENSITIVE = []
|
2463
|
+
include Aws::Structure
|
2464
|
+
end
|
2465
|
+
|
2466
|
+
# List managed accounts response.
|
2467
|
+
#
|
2468
|
+
# @!attribute [rw] items
|
2469
|
+
# List managed accounts response items.
|
2470
|
+
# @return [Array<Types::ManagedAccount>]
|
2471
|
+
#
|
2472
|
+
# @!attribute [rw] next_token
|
2473
|
+
# List managed accounts response next token.
|
2474
|
+
# @return [String]
|
2475
|
+
#
|
2476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListManagedAccountsResponse AWS API Documentation
|
2477
|
+
#
|
2478
|
+
class ListManagedAccountsResponse < Struct.new(
|
2479
|
+
:items,
|
2480
|
+
:next_token)
|
2481
|
+
SENSITIVE = []
|
2482
|
+
include Aws::Structure
|
2483
|
+
end
|
2484
|
+
|
2485
|
+
# @!attribute [rw] account_id
|
2486
|
+
# Account ID to return when listing source server post migration
|
2487
|
+
# custom actions.
|
2488
|
+
# @return [String]
|
2489
|
+
#
|
2331
2490
|
# @!attribute [rw] filters
|
2332
2491
|
# Filters to apply when listing source server post migration custom
|
2333
2492
|
# actions.
|
@@ -2350,6 +2509,7 @@ module Aws::Mgn
|
|
2350
2509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListSourceServerActionsRequest AWS API Documentation
|
2351
2510
|
#
|
2352
2511
|
class ListSourceServerActionsRequest < Struct.new(
|
2512
|
+
:account_id,
|
2353
2513
|
:filters,
|
2354
2514
|
:max_results,
|
2355
2515
|
:next_token,
|
@@ -2448,6 +2608,10 @@ module Aws::Mgn
|
|
2448
2608
|
include Aws::Structure
|
2449
2609
|
end
|
2450
2610
|
|
2611
|
+
# @!attribute [rw] account_id
|
2612
|
+
# Request account ID.
|
2613
|
+
# @return [String]
|
2614
|
+
#
|
2451
2615
|
# @!attribute [rw] filters
|
2452
2616
|
# Waves list filters.
|
2453
2617
|
# @return [Types::ListWavesRequestFilters]
|
@@ -2463,6 +2627,7 @@ module Aws::Mgn
|
|
2463
2627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesRequest AWS API Documentation
|
2464
2628
|
#
|
2465
2629
|
class ListWavesRequest < Struct.new(
|
2630
|
+
:account_id,
|
2466
2631
|
:filters,
|
2467
2632
|
:max_results,
|
2468
2633
|
:next_token)
|
@@ -2506,6 +2671,24 @@ module Aws::Mgn
|
|
2506
2671
|
include Aws::Structure
|
2507
2672
|
end
|
2508
2673
|
|
2674
|
+
# Managed account.
|
2675
|
+
#
|
2676
|
+
# @!attribute [rw] account_id
|
2677
|
+
# Managed account, account ID.
|
2678
|
+
# @return [String]
|
2679
|
+
#
|
2680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ManagedAccount AWS API Documentation
|
2681
|
+
#
|
2682
|
+
class ManagedAccount < Struct.new(
|
2683
|
+
:account_id)
|
2684
|
+
SENSITIVE = []
|
2685
|
+
include Aws::Structure
|
2686
|
+
end
|
2687
|
+
|
2688
|
+
# @!attribute [rw] account_id
|
2689
|
+
# Mark as archived by Account ID.
|
2690
|
+
# @return [String]
|
2691
|
+
#
|
2509
2692
|
# @!attribute [rw] source_server_id
|
2510
2693
|
# Mark as archived by Source Server ID.
|
2511
2694
|
# @return [String]
|
@@ -2513,6 +2696,7 @@ module Aws::Mgn
|
|
2513
2696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/MarkAsArchivedRequest AWS API Documentation
|
2514
2697
|
#
|
2515
2698
|
class MarkAsArchivedRequest < Struct.new(
|
2699
|
+
:account_id,
|
2516
2700
|
:source_server_id)
|
2517
2701
|
SENSITIVE = []
|
2518
2702
|
include Aws::Structure
|
@@ -2585,6 +2769,23 @@ module Aws::Mgn
|
|
2585
2769
|
include Aws::Structure
|
2586
2770
|
end
|
2587
2771
|
|
2772
|
+
# @!attribute [rw] account_id
|
2773
|
+
# Pause Replication Request account ID.
|
2774
|
+
# @return [String]
|
2775
|
+
#
|
2776
|
+
# @!attribute [rw] source_server_id
|
2777
|
+
# Pause Replication Request source server ID.
|
2778
|
+
# @return [String]
|
2779
|
+
#
|
2780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PauseReplicationRequest AWS API Documentation
|
2781
|
+
#
|
2782
|
+
class PauseReplicationRequest < Struct.new(
|
2783
|
+
:account_id,
|
2784
|
+
:source_server_id)
|
2785
|
+
SENSITIVE = []
|
2786
|
+
include Aws::Structure
|
2787
|
+
end
|
2788
|
+
|
2588
2789
|
# Post Launch Actions to executed on the Test or Cutover instance.
|
2589
2790
|
#
|
2590
2791
|
# @!attribute [rw] cloud_watch_log_group_name
|
@@ -2641,6 +2842,10 @@ module Aws::Mgn
|
|
2641
2842
|
include Aws::Structure
|
2642
2843
|
end
|
2643
2844
|
|
2845
|
+
# @!attribute [rw] account_id
|
2846
|
+
# Source server post migration custom account ID.
|
2847
|
+
# @return [String]
|
2848
|
+
#
|
2644
2849
|
# @!attribute [rw] action_id
|
2645
2850
|
# Source server post migration custom action ID.
|
2646
2851
|
# @return [String]
|
@@ -2696,6 +2901,7 @@ module Aws::Mgn
|
|
2696
2901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PutSourceServerActionRequest AWS API Documentation
|
2697
2902
|
#
|
2698
2903
|
class PutSourceServerActionRequest < Struct.new(
|
2904
|
+
:account_id,
|
2699
2905
|
:action_id,
|
2700
2906
|
:action_name,
|
2701
2907
|
:active,
|
@@ -2791,6 +2997,10 @@ module Aws::Mgn
|
|
2791
2997
|
include Aws::Structure
|
2792
2998
|
end
|
2793
2999
|
|
3000
|
+
# @!attribute [rw] account_id
|
3001
|
+
# Source server post migration account ID.
|
3002
|
+
# @return [String]
|
3003
|
+
#
|
2794
3004
|
# @!attribute [rw] action_id
|
2795
3005
|
# Source server post migration custom action ID to remove.
|
2796
3006
|
# @return [String]
|
@@ -2802,6 +3012,7 @@ module Aws::Mgn
|
|
2802
3012
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveSourceServerActionRequest AWS API Documentation
|
2803
3013
|
#
|
2804
3014
|
class RemoveSourceServerActionRequest < Struct.new(
|
3015
|
+
:account_id,
|
2805
3016
|
:action_id,
|
2806
3017
|
:source_server_id)
|
2807
3018
|
SENSITIVE = []
|
@@ -2895,6 +3106,10 @@ module Aws::Mgn
|
|
2895
3106
|
# Replication Configuration use Dedicated Replication Server.
|
2896
3107
|
# @return [Boolean]
|
2897
3108
|
#
|
3109
|
+
# @!attribute [rw] use_fips_endpoint
|
3110
|
+
# Replication Configuration use Fips Endpoint.
|
3111
|
+
# @return [Boolean]
|
3112
|
+
#
|
2898
3113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ReplicationConfiguration AWS API Documentation
|
2899
3114
|
#
|
2900
3115
|
class ReplicationConfiguration < Struct.new(
|
@@ -2912,7 +3127,8 @@ module Aws::Mgn
|
|
2912
3127
|
:source_server_id,
|
2913
3128
|
:staging_area_subnet_id,
|
2914
3129
|
:staging_area_tags,
|
2915
|
-
:use_dedicated_replication_server
|
3130
|
+
:use_dedicated_replication_server,
|
3131
|
+
:use_fips_endpoint)
|
2916
3132
|
SENSITIVE = [:staging_area_tags]
|
2917
3133
|
include Aws::Structure
|
2918
3134
|
end
|
@@ -3013,6 +3229,10 @@ module Aws::Mgn
|
|
3013
3229
|
# Replication Configuration template use Dedicated Replication Server.
|
3014
3230
|
# @return [Boolean]
|
3015
3231
|
#
|
3232
|
+
# @!attribute [rw] use_fips_endpoint
|
3233
|
+
# Replication Configuration template use Fips Endpoint.
|
3234
|
+
# @return [Boolean]
|
3235
|
+
#
|
3016
3236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ReplicationConfigurationTemplate AWS API Documentation
|
3017
3237
|
#
|
3018
3238
|
class ReplicationConfigurationTemplate < Struct.new(
|
@@ -3030,7 +3250,8 @@ module Aws::Mgn
|
|
3030
3250
|
:staging_area_subnet_id,
|
3031
3251
|
:staging_area_tags,
|
3032
3252
|
:tags,
|
3033
|
-
:use_dedicated_replication_server
|
3253
|
+
:use_dedicated_replication_server,
|
3254
|
+
:use_fips_endpoint)
|
3034
3255
|
SENSITIVE = [:staging_area_tags, :tags]
|
3035
3256
|
include Aws::Structure
|
3036
3257
|
end
|
@@ -3062,6 +3283,27 @@ module Aws::Mgn
|
|
3062
3283
|
include Aws::Structure
|
3063
3284
|
end
|
3064
3285
|
|
3286
|
+
# @!attribute [rw] account_id
|
3287
|
+
# Resume Replication Request account ID.
|
3288
|
+
# @return [String]
|
3289
|
+
#
|
3290
|
+
# @!attribute [rw] source_server_id
|
3291
|
+
# Resume Replication Request source server ID.
|
3292
|
+
# @return [String]
|
3293
|
+
#
|
3294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ResumeReplicationRequest AWS API Documentation
|
3295
|
+
#
|
3296
|
+
class ResumeReplicationRequest < Struct.new(
|
3297
|
+
:account_id,
|
3298
|
+
:source_server_id)
|
3299
|
+
SENSITIVE = []
|
3300
|
+
include Aws::Structure
|
3301
|
+
end
|
3302
|
+
|
3303
|
+
# @!attribute [rw] account_id
|
3304
|
+
# Retry data replication for Account ID.
|
3305
|
+
# @return [String]
|
3306
|
+
#
|
3065
3307
|
# @!attribute [rw] source_server_id
|
3066
3308
|
# Retry data replication for Source Server ID.
|
3067
3309
|
# @return [String]
|
@@ -3069,6 +3311,7 @@ module Aws::Mgn
|
|
3069
3311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RetryDataReplicationRequest AWS API Documentation
|
3070
3312
|
#
|
3071
3313
|
class RetryDataReplicationRequest < Struct.new(
|
3314
|
+
:account_id,
|
3072
3315
|
:source_server_id)
|
3073
3316
|
SENSITIVE = []
|
3074
3317
|
include Aws::Structure
|
@@ -3424,6 +3667,10 @@ module Aws::Mgn
|
|
3424
3667
|
include Aws::Structure
|
3425
3668
|
end
|
3426
3669
|
|
3670
|
+
# @!attribute [rw] account_id
|
3671
|
+
# Start Cutover by Account IDs
|
3672
|
+
# @return [String]
|
3673
|
+
#
|
3427
3674
|
# @!attribute [rw] source_server_i_ds
|
3428
3675
|
# Start Cutover by Source Server IDs.
|
3429
3676
|
# @return [Array<String>]
|
@@ -3435,6 +3682,7 @@ module Aws::Mgn
|
|
3435
3682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartCutoverRequest AWS API Documentation
|
3436
3683
|
#
|
3437
3684
|
class StartCutoverRequest < Struct.new(
|
3685
|
+
:account_id,
|
3438
3686
|
:source_server_i_ds,
|
3439
3687
|
:tags)
|
3440
3688
|
SENSITIVE = [:tags]
|
@@ -3527,6 +3775,10 @@ module Aws::Mgn
|
|
3527
3775
|
include Aws::Structure
|
3528
3776
|
end
|
3529
3777
|
|
3778
|
+
# @!attribute [rw] account_id
|
3779
|
+
# Account ID on which to start replication.
|
3780
|
+
# @return [String]
|
3781
|
+
#
|
3530
3782
|
# @!attribute [rw] source_server_id
|
3531
3783
|
# ID of source server on which to start replication.
|
3532
3784
|
# @return [String]
|
@@ -3534,11 +3786,16 @@ module Aws::Mgn
|
|
3534
3786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartReplicationRequest AWS API Documentation
|
3535
3787
|
#
|
3536
3788
|
class StartReplicationRequest < Struct.new(
|
3789
|
+
:account_id,
|
3537
3790
|
:source_server_id)
|
3538
3791
|
SENSITIVE = []
|
3539
3792
|
include Aws::Structure
|
3540
3793
|
end
|
3541
3794
|
|
3795
|
+
# @!attribute [rw] account_id
|
3796
|
+
# Start Test for Account ID.
|
3797
|
+
# @return [String]
|
3798
|
+
#
|
3542
3799
|
# @!attribute [rw] source_server_i_ds
|
3543
3800
|
# Start Test for Source Server IDs.
|
3544
3801
|
# @return [Array<String>]
|
@@ -3550,6 +3807,7 @@ module Aws::Mgn
|
|
3550
3807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartTestRequest AWS API Documentation
|
3551
3808
|
#
|
3552
3809
|
class StartTestRequest < Struct.new(
|
3810
|
+
:account_id,
|
3553
3811
|
:source_server_i_ds,
|
3554
3812
|
:tags)
|
3555
3813
|
SENSITIVE = [:tags]
|
@@ -3568,6 +3826,23 @@ module Aws::Mgn
|
|
3568
3826
|
include Aws::Structure
|
3569
3827
|
end
|
3570
3828
|
|
3829
|
+
# @!attribute [rw] account_id
|
3830
|
+
# Stop Replication Request account ID.
|
3831
|
+
# @return [String]
|
3832
|
+
#
|
3833
|
+
# @!attribute [rw] source_server_id
|
3834
|
+
# Stop Replication Request source server ID.
|
3835
|
+
# @return [String]
|
3836
|
+
#
|
3837
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StopReplicationRequest AWS API Documentation
|
3838
|
+
#
|
3839
|
+
class StopReplicationRequest < Struct.new(
|
3840
|
+
:account_id,
|
3841
|
+
:source_server_id)
|
3842
|
+
SENSITIVE = []
|
3843
|
+
include Aws::Structure
|
3844
|
+
end
|
3845
|
+
|
3571
3846
|
# @!attribute [rw] resource_arn
|
3572
3847
|
# Tag resource by ARN.
|
3573
3848
|
# @return [String]
|
@@ -3672,6 +3947,10 @@ module Aws::Mgn
|
|
3672
3947
|
include Aws::Structure
|
3673
3948
|
end
|
3674
3949
|
|
3950
|
+
# @!attribute [rw] account_id
|
3951
|
+
# Terminate Target instance by Account ID
|
3952
|
+
# @return [String]
|
3953
|
+
#
|
3675
3954
|
# @!attribute [rw] source_server_i_ds
|
3676
3955
|
# Terminate Target instance by Source Server IDs.
|
3677
3956
|
# @return [Array<String>]
|
@@ -3683,6 +3962,7 @@ module Aws::Mgn
|
|
3683
3962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/TerminateTargetInstancesRequest AWS API Documentation
|
3684
3963
|
#
|
3685
3964
|
class TerminateTargetInstancesRequest < Struct.new(
|
3965
|
+
:account_id,
|
3686
3966
|
:source_server_i_ds,
|
3687
3967
|
:tags)
|
3688
3968
|
SENSITIVE = [:tags]
|
@@ -3729,6 +4009,10 @@ module Aws::Mgn
|
|
3729
4009
|
include Aws::Structure
|
3730
4010
|
end
|
3731
4011
|
|
4012
|
+
# @!attribute [rw] account_id
|
4013
|
+
# Account ID.
|
4014
|
+
# @return [String]
|
4015
|
+
#
|
3732
4016
|
# @!attribute [rw] application_id
|
3733
4017
|
# Application ID.
|
3734
4018
|
# @return [String]
|
@@ -3736,11 +4020,16 @@ module Aws::Mgn
|
|
3736
4020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UnarchiveApplicationRequest AWS API Documentation
|
3737
4021
|
#
|
3738
4022
|
class UnarchiveApplicationRequest < Struct.new(
|
4023
|
+
:account_id,
|
3739
4024
|
:application_id)
|
3740
4025
|
SENSITIVE = []
|
3741
4026
|
include Aws::Structure
|
3742
4027
|
end
|
3743
4028
|
|
4029
|
+
# @!attribute [rw] account_id
|
4030
|
+
# Account ID.
|
4031
|
+
# @return [String]
|
4032
|
+
#
|
3744
4033
|
# @!attribute [rw] wave_id
|
3745
4034
|
# Wave ID.
|
3746
4035
|
# @return [String]
|
@@ -3748,6 +4037,7 @@ module Aws::Mgn
|
|
3748
4037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UnarchiveWaveRequest AWS API Documentation
|
3749
4038
|
#
|
3750
4039
|
class UnarchiveWaveRequest < Struct.new(
|
4040
|
+
:account_id,
|
3751
4041
|
:wave_id)
|
3752
4042
|
SENSITIVE = []
|
3753
4043
|
include Aws::Structure
|
@@ -3787,6 +4077,10 @@ module Aws::Mgn
|
|
3787
4077
|
include Aws::Structure
|
3788
4078
|
end
|
3789
4079
|
|
4080
|
+
# @!attribute [rw] account_id
|
4081
|
+
# Account ID.
|
4082
|
+
# @return [String]
|
4083
|
+
#
|
3790
4084
|
# @!attribute [rw] application_id
|
3791
4085
|
# Application ID.
|
3792
4086
|
# @return [String]
|
@@ -3802,6 +4096,7 @@ module Aws::Mgn
|
|
3802
4096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateApplicationRequest AWS API Documentation
|
3803
4097
|
#
|
3804
4098
|
class UpdateApplicationRequest < Struct.new(
|
4099
|
+
:account_id,
|
3805
4100
|
:application_id,
|
3806
4101
|
:description,
|
3807
4102
|
:name)
|
@@ -3809,6 +4104,10 @@ module Aws::Mgn
|
|
3809
4104
|
include Aws::Structure
|
3810
4105
|
end
|
3811
4106
|
|
4107
|
+
# @!attribute [rw] account_id
|
4108
|
+
# Update Launch configuration Account ID.
|
4109
|
+
# @return [String]
|
4110
|
+
#
|
3812
4111
|
# @!attribute [rw] boot_mode
|
3813
4112
|
# Update Launch configuration boot mode request.
|
3814
4113
|
# @return [String]
|
@@ -3856,6 +4155,7 @@ module Aws::Mgn
|
|
3856
4155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationRequest AWS API Documentation
|
3857
4156
|
#
|
3858
4157
|
class UpdateLaunchConfigurationRequest < Struct.new(
|
4158
|
+
:account_id,
|
3859
4159
|
:boot_mode,
|
3860
4160
|
:copy_private_ip,
|
3861
4161
|
:copy_tags,
|
@@ -3948,6 +4248,10 @@ module Aws::Mgn
|
|
3948
4248
|
include Aws::Structure
|
3949
4249
|
end
|
3950
4250
|
|
4251
|
+
# @!attribute [rw] account_id
|
4252
|
+
# Update replication configuration Account ID request.
|
4253
|
+
# @return [String]
|
4254
|
+
#
|
3951
4255
|
# @!attribute [rw] associate_default_security_group
|
3952
4256
|
# Update replication configuration associate default Application
|
3953
4257
|
# Migration Service Security group request.
|
@@ -4013,9 +4317,14 @@ module Aws::Mgn
|
|
4013
4317
|
# request.
|
4014
4318
|
# @return [Boolean]
|
4015
4319
|
#
|
4320
|
+
# @!attribute [rw] use_fips_endpoint
|
4321
|
+
# Update replication configuration use Fips Endpoint.
|
4322
|
+
# @return [Boolean]
|
4323
|
+
#
|
4016
4324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfigurationRequest AWS API Documentation
|
4017
4325
|
#
|
4018
4326
|
class UpdateReplicationConfigurationRequest < Struct.new(
|
4327
|
+
:account_id,
|
4019
4328
|
:associate_default_security_group,
|
4020
4329
|
:bandwidth_throttling,
|
4021
4330
|
:create_public_ip,
|
@@ -4030,7 +4339,8 @@ module Aws::Mgn
|
|
4030
4339
|
:source_server_id,
|
4031
4340
|
:staging_area_subnet_id,
|
4032
4341
|
:staging_area_tags,
|
4033
|
-
:use_dedicated_replication_server
|
4342
|
+
:use_dedicated_replication_server,
|
4343
|
+
:use_fips_endpoint)
|
4034
4344
|
SENSITIVE = [:staging_area_tags]
|
4035
4345
|
include Aws::Structure
|
4036
4346
|
end
|
@@ -4100,6 +4410,10 @@ module Aws::Mgn
|
|
4100
4410
|
# Server request.
|
4101
4411
|
# @return [Boolean]
|
4102
4412
|
#
|
4413
|
+
# @!attribute [rw] use_fips_endpoint
|
4414
|
+
# Update replication configuration template use Fips Endpoint request.
|
4415
|
+
# @return [Boolean]
|
4416
|
+
#
|
4103
4417
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfigurationTemplateRequest AWS API Documentation
|
4104
4418
|
#
|
4105
4419
|
class UpdateReplicationConfigurationTemplateRequest < Struct.new(
|
@@ -4116,11 +4430,16 @@ module Aws::Mgn
|
|
4116
4430
|
:replication_servers_security_groups_i_ds,
|
4117
4431
|
:staging_area_subnet_id,
|
4118
4432
|
:staging_area_tags,
|
4119
|
-
:use_dedicated_replication_server
|
4433
|
+
:use_dedicated_replication_server,
|
4434
|
+
:use_fips_endpoint)
|
4120
4435
|
SENSITIVE = [:staging_area_tags]
|
4121
4436
|
include Aws::Structure
|
4122
4437
|
end
|
4123
4438
|
|
4439
|
+
# @!attribute [rw] account_id
|
4440
|
+
# Account ID on which to update replication type.
|
4441
|
+
# @return [String]
|
4442
|
+
#
|
4124
4443
|
# @!attribute [rw] replication_type
|
4125
4444
|
# Replication type to which to update source server.
|
4126
4445
|
# @return [String]
|
@@ -4132,12 +4451,17 @@ module Aws::Mgn
|
|
4132
4451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateSourceServerReplicationTypeRequest AWS API Documentation
|
4133
4452
|
#
|
4134
4453
|
class UpdateSourceServerReplicationTypeRequest < Struct.new(
|
4454
|
+
:account_id,
|
4135
4455
|
:replication_type,
|
4136
4456
|
:source_server_id)
|
4137
4457
|
SENSITIVE = []
|
4138
4458
|
include Aws::Structure
|
4139
4459
|
end
|
4140
4460
|
|
4461
|
+
# @!attribute [rw] account_id
|
4462
|
+
# Account ID.
|
4463
|
+
# @return [String]
|
4464
|
+
#
|
4141
4465
|
# @!attribute [rw] description
|
4142
4466
|
# Wave description.
|
4143
4467
|
# @return [String]
|
@@ -4153,6 +4477,7 @@ module Aws::Mgn
|
|
4153
4477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateWaveRequest AWS API Documentation
|
4154
4478
|
#
|
4155
4479
|
class UpdateWaveRequest < Struct.new(
|
4480
|
+
:account_id,
|
4156
4481
|
:description,
|
4157
4482
|
:name,
|
4158
4483
|
:wave_id)
|