aws-sdk-sms 1.23.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -27,6 +27,7 @@ module Aws::SMS
27
27
  # See {Seahorse::Client::RequestContext} for more information.
28
28
  #
29
29
  # ## Error Classes
30
+ # * {DryRunOperationException}
30
31
  # * {InternalError}
31
32
  # * {InvalidParameterException}
32
33
  # * {MissingRequiredParameterException}
@@ -45,6 +46,21 @@ module Aws::SMS
45
46
 
46
47
  extend Aws::Errors::DynamicErrors
47
48
 
49
+ class DryRunOperationException < ServiceError
50
+
51
+ # @param [Seahorse::Client::RequestContext] context
52
+ # @param [String] message
53
+ # @param [Aws::SMS::Types::DryRunOperationException] data
54
+ def initialize(context, message, data = Aws::EmptyStructure.new)
55
+ super(context, message, data)
56
+ end
57
+
58
+ # @return [String]
59
+ def message
60
+ @message || @data[:message]
61
+ end
62
+ end
63
+
48
64
  class InternalError < ServiceError
49
65
 
50
66
  # @param [Seahorse::Client::RequestContext] context
@@ -13,15 +13,19 @@ module Aws::SMS
13
13
  # Information about the application.
14
14
  #
15
15
  # @!attribute [rw] app_id
16
- # Unique ID of the application.
16
+ # The unique ID of the application.
17
+ # @return [String]
18
+ #
19
+ # @!attribute [rw] imported_app_id
20
+ # The ID of the application.
17
21
  # @return [String]
18
22
  #
19
23
  # @!attribute [rw] name
20
- # Name of the application.
24
+ # The name of the application.
21
25
  # @return [String]
22
26
  #
23
27
  # @!attribute [rw] description
24
- # Description of the application.
28
+ # The description of the application.
25
29
  # @return [String]
26
30
  #
27
31
  # @!attribute [rw] status
@@ -32,8 +36,12 @@ module Aws::SMS
32
36
  # A message related to the status of the application
33
37
  # @return [String]
34
38
  #
39
+ # @!attribute [rw] replication_configuration_status
40
+ # Status of the replication configuration.
41
+ # @return [String]
42
+ #
35
43
  # @!attribute [rw] replication_status
36
- # Replication status of the application.
44
+ # The replication status of the application.
37
45
  # @return [String]
38
46
  #
39
47
  # @!attribute [rw] replication_status_message
@@ -41,11 +49,16 @@ module Aws::SMS
41
49
  # @return [String]
42
50
  #
43
51
  # @!attribute [rw] latest_replication_time
44
- # Timestamp of the application's most recent successful replication.
52
+ # The timestamp of the application's most recent successful
53
+ # replication.
45
54
  # @return [Time]
46
55
  #
56
+ # @!attribute [rw] launch_configuration_status
57
+ # Status of the launch configuration.
58
+ # @return [String]
59
+ #
47
60
  # @!attribute [rw] launch_status
48
- # Launch status of the application.
61
+ # The launch status of the application.
49
62
  # @return [String]
50
63
  #
51
64
  # @!attribute [rw] launch_status_message
@@ -57,36 +70,40 @@ module Aws::SMS
57
70
  # @return [Types::LaunchDetails]
58
71
  #
59
72
  # @!attribute [rw] creation_time
60
- # Time of creation of this application.
73
+ # The creation time of the application.
61
74
  # @return [Time]
62
75
  #
63
76
  # @!attribute [rw] last_modified
64
- # Timestamp of the application's creation.
77
+ # The last modified time of the application.
65
78
  # @return [Time]
66
79
  #
67
80
  # @!attribute [rw] role_name
68
- # Name of the service role in the customer's account used by AWS SMS.
81
+ # The name of the service role in the customer's account used by AWS
82
+ # SMS.
69
83
  # @return [String]
70
84
  #
71
85
  # @!attribute [rw] total_server_groups
72
- # Number of server groups present in the application.
86
+ # The number of server groups present in the application.
73
87
  # @return [Integer]
74
88
  #
75
89
  # @!attribute [rw] total_servers
76
- # Number of servers present in the application.
90
+ # The number of servers present in the application.
77
91
  # @return [Integer]
78
92
  #
79
93
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/AppSummary AWS API Documentation
80
94
  #
81
95
  class AppSummary < Struct.new(
82
96
  :app_id,
97
+ :imported_app_id,
83
98
  :name,
84
99
  :description,
85
100
  :status,
86
101
  :status_message,
102
+ :replication_configuration_status,
87
103
  :replication_status,
88
104
  :replication_status_message,
89
105
  :latest_replication_time,
106
+ :launch_configuration_status,
90
107
  :launch_status,
91
108
  :launch_status_message,
92
109
  :launch_details,
@@ -99,10 +116,75 @@ module Aws::SMS
99
116
  include Aws::Structure
100
117
  end
101
118
 
119
+ # Configuration for validating an application.
120
+ #
121
+ # @note When making an API call, you may pass AppValidationConfiguration
122
+ # data as a hash:
123
+ #
124
+ # {
125
+ # validation_id: "ValidationId",
126
+ # name: "NonEmptyStringWithMaxLen255",
127
+ # app_validation_strategy: "SSM", # accepts SSM
128
+ # ssm_validation_parameters: {
129
+ # source: {
130
+ # s3_location: {
131
+ # bucket: "S3BucketName",
132
+ # key: "S3KeyName",
133
+ # },
134
+ # },
135
+ # instance_id: "InstanceId",
136
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
137
+ # command: "Command",
138
+ # execution_timeout_seconds: 1,
139
+ # output_s3_bucket_name: "BucketName",
140
+ # },
141
+ # }
142
+ #
143
+ # @!attribute [rw] validation_id
144
+ # The ID of the validation.
145
+ # @return [String]
146
+ #
147
+ # @!attribute [rw] name
148
+ # The name of the configuration.
149
+ # @return [String]
150
+ #
151
+ # @!attribute [rw] app_validation_strategy
152
+ # The validation strategy.
153
+ # @return [String]
154
+ #
155
+ # @!attribute [rw] ssm_validation_parameters
156
+ # The validation parameters.
157
+ # @return [Types::SSMValidationParameters]
158
+ #
159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/AppValidationConfiguration AWS API Documentation
160
+ #
161
+ class AppValidationConfiguration < Struct.new(
162
+ :validation_id,
163
+ :name,
164
+ :app_validation_strategy,
165
+ :ssm_validation_parameters)
166
+ SENSITIVE = []
167
+ include Aws::Structure
168
+ end
169
+
170
+ # Output from validating an application.
171
+ #
172
+ # @!attribute [rw] ssm_output
173
+ # Output from using SSM to validate the application.
174
+ # @return [Types::SSMOutput]
175
+ #
176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/AppValidationOutput AWS API Documentation
177
+ #
178
+ class AppValidationOutput < Struct.new(
179
+ :ssm_output)
180
+ SENSITIVE = []
181
+ include Aws::Structure
182
+ end
183
+
102
184
  # Represents a connector.
103
185
  #
104
186
  # @!attribute [rw] connector_id
105
- # The identifier of the connector.
187
+ # The ID of the connector.
106
188
  # @return [String]
107
189
  #
108
190
  # @!attribute [rw] version
@@ -126,7 +208,7 @@ module Aws::SMS
126
208
  # @return [String]
127
209
  #
128
210
  # @!attribute [rw] vm_manager_id
129
- # The identifier of the VM manager.
211
+ # The ID of the VM manager.
130
212
  # @return [String]
131
213
  #
132
214
  # @!attribute [rw] ip_address
@@ -199,28 +281,29 @@ module Aws::SMS
199
281
  # }
200
282
  #
201
283
  # @!attribute [rw] name
202
- # Name of the new application.
284
+ # The name of the new application.
203
285
  # @return [String]
204
286
  #
205
287
  # @!attribute [rw] description
206
- # Description of the new application
288
+ # The description of the new application
207
289
  # @return [String]
208
290
  #
209
291
  # @!attribute [rw] role_name
210
- # Name of service role in customer's account to be used by AWS SMS.
292
+ # The name of the service role in the customer's account to be used
293
+ # by AWS SMS.
211
294
  # @return [String]
212
295
  #
213
296
  # @!attribute [rw] client_token
214
- # A unique, case-sensitive identifier you provide to ensure
297
+ # A unique, case-sensitive identifier that you provide to ensure the
215
298
  # idempotency of application creation.
216
299
  # @return [String]
217
300
  #
218
301
  # @!attribute [rw] server_groups
219
- # List of server groups to include in the application.
302
+ # The server groups to include in the application.
220
303
  # @return [Array<Types::ServerGroup>]
221
304
  #
222
305
  # @!attribute [rw] tags
223
- # List of tags to be associated with the application.
306
+ # The tags to be associated with the application.
224
307
  # @return [Array<Types::Tag>]
225
308
  #
226
309
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/CreateAppRequest AWS API Documentation
@@ -237,15 +320,15 @@ module Aws::SMS
237
320
  end
238
321
 
239
322
  # @!attribute [rw] app_summary
240
- # Summary description of the application.
323
+ # A summary description of the application.
241
324
  # @return [Types::AppSummary]
242
325
  #
243
326
  # @!attribute [rw] server_groups
244
- # List of server groups included in the application.
327
+ # The server groups included in the application.
245
328
  # @return [Array<Types::ServerGroup>]
246
329
  #
247
330
  # @!attribute [rw] tags
248
- # List of taags associated with the application.
331
+ # The tags associated with the application.
249
332
  # @return [Array<Types::Tag>]
250
333
  #
251
334
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/CreateAppResponse AWS API Documentation
@@ -275,7 +358,7 @@ module Aws::SMS
275
358
  # }
276
359
  #
277
360
  # @!attribute [rw] server_id
278
- # The identifier of the server.
361
+ # The ID of the server.
279
362
  # @return [String]
280
363
  #
281
364
  # @!attribute [rw] seed_replication_time
@@ -287,6 +370,7 @@ module Aws::SMS
287
370
  # @return [Integer]
288
371
  #
289
372
  # @!attribute [rw] run_once
373
+ # Indicates whether to run the replication job one time.
290
374
  # @return [Boolean]
291
375
  #
292
376
  # @!attribute [rw] license_type
@@ -303,29 +387,29 @@ module Aws::SMS
303
387
  # @return [String]
304
388
  #
305
389
  # @!attribute [rw] number_of_recent_amis_to_keep
306
- # The maximum number of SMS-created AMIs to retain. The oldest will be
307
- # deleted once the maximum number is reached and a new AMI is created.
390
+ # The maximum number of SMS-created AMIs to retain. The oldest is
391
+ # deleted after the maximum number is reached and a new AMI is
392
+ # created.
308
393
  # @return [Integer]
309
394
  #
310
395
  # @!attribute [rw] encrypted
311
- # When *true*, the replication job produces encrypted AMIs. See also
312
- # `KmsKeyId` below.
396
+ # Indicates whether the replication job produces encrypted AMIs.
313
397
  # @return [Boolean]
314
398
  #
315
399
  # @!attribute [rw] kms_key_id
316
- # KMS key ID for replication jobs that produce encrypted AMIs. Can be
317
- # any of the following:
400
+ # The ID of the KMS key for replication jobs that produce encrypted
401
+ # AMIs. This value can be any of the following:
318
402
  #
319
403
  # * KMS key ID
320
404
  #
321
405
  # * KMS key alias
322
406
  #
323
- # * ARN referring to KMS key ID
407
+ # * ARN referring to the KMS key ID
324
408
  #
325
- # * ARN referring to KMS key alias
409
+ # * ARN referring to the KMS key alias
326
410
  #
327
- # If encrypted is *true* but a KMS key id is not specified, the
328
- # customer's default KMS key for EBS is used.
411
+ # If encrypted is *true* but a KMS key ID is not specified, the
412
+ # customer's default KMS key for Amazon EBS is used.
329
413
  # @return [String]
330
414
  #
331
415
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/CreateReplicationJobRequest AWS API Documentation
@@ -365,7 +449,7 @@ module Aws::SMS
365
449
  # }
366
450
  #
367
451
  # @!attribute [rw] app_id
368
- # ID of the application associated with the launch configuration.
452
+ # The ID of the application.
369
453
  # @return [String]
370
454
  #
371
455
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DeleteAppLaunchConfigurationRequest AWS API Documentation
@@ -388,7 +472,7 @@ module Aws::SMS
388
472
  # }
389
473
  #
390
474
  # @!attribute [rw] app_id
391
- # ID of the application associated with the replication configuration.
475
+ # The ID of the application.
392
476
  # @return [String]
393
477
  #
394
478
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DeleteAppReplicationConfigurationRequest AWS API Documentation
@@ -413,17 +497,17 @@ module Aws::SMS
413
497
  # }
414
498
  #
415
499
  # @!attribute [rw] app_id
416
- # ID of the application to delete.
500
+ # The ID of the application.
417
501
  # @return [String]
418
502
  #
419
503
  # @!attribute [rw] force_stop_app_replication
420
- # While deleting the application, stop all replication jobs
421
- # corresponding to the servers in the application.
504
+ # Indicates whether to stop all replication jobs corresponding to the
505
+ # servers in the application while deleting the application.
422
506
  # @return [Boolean]
423
507
  #
424
508
  # @!attribute [rw] force_terminate_app
425
- # While deleting the application, terminate the stack corresponding to
426
- # the application.
509
+ # Indicates whether to terminate the stack corresponding to the
510
+ # application while deleting the application.
427
511
  # @return [Boolean]
428
512
  #
429
513
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DeleteAppRequest AWS API Documentation
@@ -440,6 +524,29 @@ module Aws::SMS
440
524
  #
441
525
  class DeleteAppResponse < Aws::EmptyStructure; end
442
526
 
527
+ # @note When making an API call, you may pass DeleteAppValidationConfigurationRequest
528
+ # data as a hash:
529
+ #
530
+ # {
531
+ # app_id: "AppIdWithValidation", # required
532
+ # }
533
+ #
534
+ # @!attribute [rw] app_id
535
+ # The ID of the application.
536
+ # @return [String]
537
+ #
538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DeleteAppValidationConfigurationRequest AWS API Documentation
539
+ #
540
+ class DeleteAppValidationConfigurationRequest < Struct.new(
541
+ :app_id)
542
+ SENSITIVE = []
543
+ include Aws::Structure
544
+ end
545
+
546
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DeleteAppValidationConfigurationResponse AWS API Documentation
547
+ #
548
+ class DeleteAppValidationConfigurationResponse < Aws::EmptyStructure; end
549
+
443
550
  # @note When making an API call, you may pass DeleteReplicationJobRequest
444
551
  # data as a hash:
445
552
  #
@@ -448,7 +555,7 @@ module Aws::SMS
448
555
  # }
449
556
  #
450
557
  # @!attribute [rw] replication_job_id
451
- # The identifier of the replication job.
558
+ # The ID of the replication job.
452
559
  # @return [String]
453
560
  #
454
561
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DeleteReplicationJobRequest AWS API Documentation
@@ -481,7 +588,7 @@ module Aws::SMS
481
588
  # }
482
589
  #
483
590
  # @!attribute [rw] connector_id
484
- # The identifier of the connector.
591
+ # The ID of the connector.
485
592
  # @return [String]
486
593
  #
487
594
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DisassociateConnectorRequest AWS API Documentation
@@ -496,6 +603,20 @@ module Aws::SMS
496
603
  #
497
604
  class DisassociateConnectorResponse < Aws::EmptyStructure; end
498
605
 
606
+ # The user has the required permissions, so the request would have
607
+ # succeeded, but a dry run was performed.
608
+ #
609
+ # @!attribute [rw] message
610
+ # @return [String]
611
+ #
612
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/DryRunOperationException AWS API Documentation
613
+ #
614
+ class DryRunOperationException < Struct.new(
615
+ :message)
616
+ SENSITIVE = []
617
+ include Aws::Structure
618
+ end
619
+
499
620
  # @note When making an API call, you may pass GenerateChangeSetRequest
500
621
  # data as a hash:
501
622
  #
@@ -505,11 +626,11 @@ module Aws::SMS
505
626
  # }
506
627
  #
507
628
  # @!attribute [rw] app_id
508
- # ID of the application associated with the change set.
629
+ # The ID of the application associated with the change set.
509
630
  # @return [String]
510
631
  #
511
632
  # @!attribute [rw] changeset_format
512
- # Format for the change set.
633
+ # The format for the change set.
513
634
  # @return [String]
514
635
  #
515
636
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GenerateChangeSetRequest AWS API Documentation
@@ -522,7 +643,7 @@ module Aws::SMS
522
643
  end
523
644
 
524
645
  # @!attribute [rw] s3_location
525
- # Location of the Amazon S3 object.
646
+ # The location of the Amazon S3 object.
526
647
  # @return [Types::S3Location]
527
648
  #
528
649
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GenerateChangeSetResponse AWS API Documentation
@@ -542,12 +663,12 @@ module Aws::SMS
542
663
  # }
543
664
  #
544
665
  # @!attribute [rw] app_id
545
- # ID of the application associated with the Amazon CloudFormation
666
+ # The ID of the application associated with the AWS CloudFormation
546
667
  # template.
547
668
  # @return [String]
548
669
  #
549
670
  # @!attribute [rw] template_format
550
- # Format for generating the Amazon CloudFormation template.
671
+ # The format for generating the AWS CloudFormation template.
551
672
  # @return [String]
552
673
  #
553
674
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GenerateTemplateRequest AWS API Documentation
@@ -560,7 +681,7 @@ module Aws::SMS
560
681
  end
561
682
 
562
683
  # @!attribute [rw] s3_location
563
- # Location of the Amazon S3 object.
684
+ # The location of the Amazon S3 object.
564
685
  # @return [Types::S3Location]
565
686
  #
566
687
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GenerateTemplateResponse AWS API Documentation
@@ -579,7 +700,7 @@ module Aws::SMS
579
700
  # }
580
701
  #
581
702
  # @!attribute [rw] app_id
582
- # ID of the application launch configuration.
703
+ # The ID of the application.
583
704
  # @return [String]
584
705
  #
585
706
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppLaunchConfigurationRequest AWS API Documentation
@@ -591,16 +712,21 @@ module Aws::SMS
591
712
  end
592
713
 
593
714
  # @!attribute [rw] app_id
594
- # ID of the application associated with the launch configuration.
715
+ # The ID of the application.
595
716
  # @return [String]
596
717
  #
597
718
  # @!attribute [rw] role_name
598
- # Name of the service role in the customer's account that Amazon
719
+ # The name of the service role in the customer's account that AWS
599
720
  # CloudFormation uses to launch the application.
600
721
  # @return [String]
601
722
  #
723
+ # @!attribute [rw] auto_launch
724
+ # Indicates whether the application is configured to launch
725
+ # automatically after replication is complete.
726
+ # @return [Boolean]
727
+ #
602
728
  # @!attribute [rw] server_group_launch_configurations
603
- # List of launch configurations for server groups in this application.
729
+ # The launch configurations for server groups in this application.
604
730
  # @return [Array<Types::ServerGroupLaunchConfiguration>]
605
731
  #
606
732
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppLaunchConfigurationResponse AWS API Documentation
@@ -608,6 +734,7 @@ module Aws::SMS
608
734
  class GetAppLaunchConfigurationResponse < Struct.new(
609
735
  :app_id,
610
736
  :role_name,
737
+ :auto_launch,
611
738
  :server_group_launch_configurations)
612
739
  SENSITIVE = []
613
740
  include Aws::Structure
@@ -621,7 +748,7 @@ module Aws::SMS
621
748
  # }
622
749
  #
623
750
  # @!attribute [rw] app_id
624
- # ID of the application associated with the replication configuration.
751
+ # The ID of the application.
625
752
  # @return [String]
626
753
  #
627
754
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppReplicationConfigurationRequest AWS API Documentation
@@ -633,7 +760,7 @@ module Aws::SMS
633
760
  end
634
761
 
635
762
  # @!attribute [rw] server_group_replication_configurations
636
- # Replication configurations associated with server groups in this
763
+ # The replication configurations associated with server groups in this
637
764
  # application.
638
765
  # @return [Array<Types::ServerGroupReplicationConfiguration>]
639
766
  #
@@ -653,7 +780,7 @@ module Aws::SMS
653
780
  # }
654
781
  #
655
782
  # @!attribute [rw] app_id
656
- # ID of the application whose information is being retrieved.
783
+ # The ID of the application.
657
784
  # @return [String]
658
785
  #
659
786
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppRequest AWS API Documentation
@@ -669,11 +796,11 @@ module Aws::SMS
669
796
  # @return [Types::AppSummary]
670
797
  #
671
798
  # @!attribute [rw] server_groups
672
- # List of server groups belonging to the application.
799
+ # The server groups that belong to the application.
673
800
  # @return [Array<Types::ServerGroup>]
674
801
  #
675
802
  # @!attribute [rw] tags
676
- # List of tags associated with the application.
803
+ # The tags associated with the application.
677
804
  # @return [Array<Types::Tag>]
678
805
  #
679
806
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppResponse AWS API Documentation
@@ -686,6 +813,73 @@ module Aws::SMS
686
813
  include Aws::Structure
687
814
  end
688
815
 
816
+ # @note When making an API call, you may pass GetAppValidationConfigurationRequest
817
+ # data as a hash:
818
+ #
819
+ # {
820
+ # app_id: "AppIdWithValidation", # required
821
+ # }
822
+ #
823
+ # @!attribute [rw] app_id
824
+ # The ID of the application.
825
+ # @return [String]
826
+ #
827
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppValidationConfigurationRequest AWS API Documentation
828
+ #
829
+ class GetAppValidationConfigurationRequest < Struct.new(
830
+ :app_id)
831
+ SENSITIVE = []
832
+ include Aws::Structure
833
+ end
834
+
835
+ # @!attribute [rw] app_validation_configurations
836
+ # The configuration for application validation.
837
+ # @return [Array<Types::AppValidationConfiguration>]
838
+ #
839
+ # @!attribute [rw] server_group_validation_configurations
840
+ # The configuration for instance validation.
841
+ # @return [Array<Types::ServerGroupValidationConfiguration>]
842
+ #
843
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppValidationConfigurationResponse AWS API Documentation
844
+ #
845
+ class GetAppValidationConfigurationResponse < Struct.new(
846
+ :app_validation_configurations,
847
+ :server_group_validation_configurations)
848
+ SENSITIVE = []
849
+ include Aws::Structure
850
+ end
851
+
852
+ # @note When making an API call, you may pass GetAppValidationOutputRequest
853
+ # data as a hash:
854
+ #
855
+ # {
856
+ # app_id: "AppIdWithValidation", # required
857
+ # }
858
+ #
859
+ # @!attribute [rw] app_id
860
+ # The ID of the application.
861
+ # @return [String]
862
+ #
863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppValidationOutputRequest AWS API Documentation
864
+ #
865
+ class GetAppValidationOutputRequest < Struct.new(
866
+ :app_id)
867
+ SENSITIVE = []
868
+ include Aws::Structure
869
+ end
870
+
871
+ # @!attribute [rw] validation_output_list
872
+ # The validation output.
873
+ # @return [Array<Types::ValidationOutput>]
874
+ #
875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetAppValidationOutputResponse AWS API Documentation
876
+ #
877
+ class GetAppValidationOutputResponse < Struct.new(
878
+ :validation_output_list)
879
+ SENSITIVE = []
880
+ include Aws::Structure
881
+ end
882
+
689
883
  # @note When making an API call, you may pass GetConnectorsRequest
690
884
  # data as a hash:
691
885
  #
@@ -741,7 +935,7 @@ module Aws::SMS
741
935
  # }
742
936
  #
743
937
  # @!attribute [rw] replication_job_id
744
- # The identifier of the replication job.
938
+ # The ID of the replication job.
745
939
  # @return [String]
746
940
  #
747
941
  # @!attribute [rw] next_token
@@ -792,7 +986,7 @@ module Aws::SMS
792
986
  # }
793
987
  #
794
988
  # @!attribute [rw] replication_job_id
795
- # The identifier of the replication job.
989
+ # The ID of the replication job.
796
990
  # @return [String]
797
991
  #
798
992
  # @!attribute [rw] next_token
@@ -863,7 +1057,7 @@ module Aws::SMS
863
1057
  # @return [Integer]
864
1058
  #
865
1059
  # @!attribute [rw] vm_server_address_list
866
- # List of `VmServerAddress` objects
1060
+ # The server addresses.
867
1061
  # @return [Array<Types::VmServerAddress>]
868
1062
  #
869
1063
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetServersRequest AWS API Documentation
@@ -904,6 +1098,36 @@ module Aws::SMS
904
1098
  include Aws::Structure
905
1099
  end
906
1100
 
1101
+ # @note When making an API call, you may pass ImportAppCatalogRequest
1102
+ # data as a hash:
1103
+ #
1104
+ # {
1105
+ # role_name: "RoleName",
1106
+ # }
1107
+ #
1108
+ # @!attribute [rw] role_name
1109
+ # The name of the service role. If you omit this parameter, we create
1110
+ # a service-linked role for AWS Migration Hub in your account.
1111
+ # Otherwise, the role that you provide must have the [policy and trust
1112
+ # policy][1] described in the *AWS Migration Hub User Guide*.
1113
+ #
1114
+ #
1115
+ #
1116
+ # [1]: https://docs.aws.amazon.com/migrationhub/latest/ug/new-customer-setup.html#sms-managed
1117
+ # @return [String]
1118
+ #
1119
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ImportAppCatalogRequest AWS API Documentation
1120
+ #
1121
+ class ImportAppCatalogRequest < Struct.new(
1122
+ :role_name)
1123
+ SENSITIVE = []
1124
+ include Aws::Structure
1125
+ end
1126
+
1127
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ImportAppCatalogResponse AWS API Documentation
1128
+ #
1129
+ class ImportAppCatalogResponse < Aws::EmptyStructure; end
1130
+
907
1131
  # @api private
908
1132
  #
909
1133
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ImportServerCatalogRequest AWS API Documentation
@@ -948,7 +1172,7 @@ module Aws::SMS
948
1172
  # }
949
1173
  #
950
1174
  # @!attribute [rw] app_id
951
- # ID of the application to launch.
1175
+ # The ID of the application.
952
1176
  # @return [String]
953
1177
  #
954
1178
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/LaunchAppRequest AWS API Documentation
@@ -966,15 +1190,15 @@ module Aws::SMS
966
1190
  # Details about the latest launch of an application.
967
1191
  #
968
1192
  # @!attribute [rw] latest_launch_time
969
- # Latest time this application was launched successfully.
1193
+ # The latest time that this application was launched successfully.
970
1194
  # @return [Time]
971
1195
  #
972
1196
  # @!attribute [rw] stack_name
973
- # Name of the latest stack launched for this application.
1197
+ # The name of the latest stack launched for this application.
974
1198
  # @return [String]
975
1199
  #
976
1200
  # @!attribute [rw] stack_id
977
- # Identifier of the latest stack launched for this application.
1201
+ # The ID of the latest stack launched for this application.
978
1202
  # @return [String]
979
1203
  #
980
1204
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/LaunchDetails AWS API Documentation
@@ -997,6 +1221,7 @@ module Aws::SMS
997
1221
  # }
998
1222
  #
999
1223
  # @!attribute [rw] app_ids
1224
+ # The unique application IDs.
1000
1225
  # @return [Array<String>]
1001
1226
  #
1002
1227
  # @!attribute [rw] next_token
@@ -1005,8 +1230,8 @@ module Aws::SMS
1005
1230
  #
1006
1231
  # @!attribute [rw] max_results
1007
1232
  # The maximum number of results to return in a single call. The
1008
- # default value is 50. To retrieve the remaining results, make another
1009
- # call with the returned `NextToken` value.
1233
+ # default value is 100. To retrieve the remaining results, make
1234
+ # another call with the returned `NextToken` value.
1010
1235
  # @return [Integer]
1011
1236
  #
1012
1237
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ListAppsRequest AWS API Documentation
@@ -1020,7 +1245,7 @@ module Aws::SMS
1020
1245
  end
1021
1246
 
1022
1247
  # @!attribute [rw] apps
1023
- # A list of application summaries.
1248
+ # The application summaries.
1024
1249
  # @return [Array<Types::AppSummary>]
1025
1250
  #
1026
1251
  # @!attribute [rw] next_token
@@ -1063,6 +1288,72 @@ module Aws::SMS
1063
1288
  include Aws::Structure
1064
1289
  end
1065
1290
 
1291
+ # Contains the status of validating an application.
1292
+ #
1293
+ # @note When making an API call, you may pass NotificationContext
1294
+ # data as a hash:
1295
+ #
1296
+ # {
1297
+ # validation_id: "ValidationId",
1298
+ # status: "READY_FOR_VALIDATION", # accepts READY_FOR_VALIDATION, PENDING, IN_PROGRESS, SUCCEEDED, FAILED
1299
+ # status_message: "ValidationStatusMessage",
1300
+ # }
1301
+ #
1302
+ # @!attribute [rw] validation_id
1303
+ # The ID of the validation.
1304
+ # @return [String]
1305
+ #
1306
+ # @!attribute [rw] status
1307
+ # The status of the validation.
1308
+ # @return [String]
1309
+ #
1310
+ # @!attribute [rw] status_message
1311
+ # The status message.
1312
+ # @return [String]
1313
+ #
1314
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/NotificationContext AWS API Documentation
1315
+ #
1316
+ class NotificationContext < Struct.new(
1317
+ :validation_id,
1318
+ :status,
1319
+ :status_message)
1320
+ SENSITIVE = []
1321
+ include Aws::Structure
1322
+ end
1323
+
1324
+ # @note When making an API call, you may pass NotifyAppValidationOutputRequest
1325
+ # data as a hash:
1326
+ #
1327
+ # {
1328
+ # app_id: "AppIdWithValidation", # required
1329
+ # notification_context: {
1330
+ # validation_id: "ValidationId",
1331
+ # status: "READY_FOR_VALIDATION", # accepts READY_FOR_VALIDATION, PENDING, IN_PROGRESS, SUCCEEDED, FAILED
1332
+ # status_message: "ValidationStatusMessage",
1333
+ # },
1334
+ # }
1335
+ #
1336
+ # @!attribute [rw] app_id
1337
+ # The ID of the application.
1338
+ # @return [String]
1339
+ #
1340
+ # @!attribute [rw] notification_context
1341
+ # The notification information.
1342
+ # @return [Types::NotificationContext]
1343
+ #
1344
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/NotifyAppValidationOutputRequest AWS API Documentation
1345
+ #
1346
+ class NotifyAppValidationOutputRequest < Struct.new(
1347
+ :app_id,
1348
+ :notification_context)
1349
+ SENSITIVE = []
1350
+ include Aws::Structure
1351
+ end
1352
+
1353
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/NotifyAppValidationOutputResponse AWS API Documentation
1354
+ #
1355
+ class NotifyAppValidationOutputResponse < Aws::EmptyStructure; end
1356
+
1066
1357
  # This operation is not allowed.
1067
1358
  #
1068
1359
  # @!attribute [rw] message
@@ -1082,6 +1373,7 @@ module Aws::SMS
1082
1373
  # {
1083
1374
  # app_id: "AppId",
1084
1375
  # role_name: "RoleName",
1376
+ # auto_launch: false,
1085
1377
  # server_group_launch_configurations: [
1086
1378
  # {
1087
1379
  # server_group_id: "ServerGroupId",
@@ -1111,12 +1403,18 @@ module Aws::SMS
1111
1403
  # ec2_key_name: "EC2KeyName",
1112
1404
  # user_data: {
1113
1405
  # s3_location: {
1114
- # bucket: "BucketName",
1115
- # key: "KeyName",
1406
+ # bucket: "S3BucketName",
1407
+ # key: "S3KeyName",
1116
1408
  # },
1117
1409
  # },
1118
1410
  # instance_type: "InstanceType",
1119
1411
  # associate_public_ip_address: false,
1412
+ # iam_instance_profile_name: "RoleName",
1413
+ # configure_script: {
1414
+ # bucket: "S3BucketName",
1415
+ # key: "S3KeyName",
1416
+ # },
1417
+ # configure_script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
1120
1418
  # },
1121
1419
  # ],
1122
1420
  # },
@@ -1124,16 +1422,22 @@ module Aws::SMS
1124
1422
  # }
1125
1423
  #
1126
1424
  # @!attribute [rw] app_id
1127
- # ID of the application associated with the launch configuration.
1425
+ # The ID of the application.
1128
1426
  # @return [String]
1129
1427
  #
1130
1428
  # @!attribute [rw] role_name
1131
- # Name of service role in the customer's account that Amazon
1429
+ # The name of service role in the customer's account that AWS
1132
1430
  # CloudFormation uses to launch the application.
1133
1431
  # @return [String]
1134
1432
  #
1433
+ # @!attribute [rw] auto_launch
1434
+ # Indicates whether the application is configured to launch
1435
+ # automatically after replication is complete.
1436
+ # @return [Boolean]
1437
+ #
1135
1438
  # @!attribute [rw] server_group_launch_configurations
1136
- # Launch configurations for server groups in the application.
1439
+ # Information about the launch configurations for server groups in the
1440
+ # application.
1137
1441
  # @return [Array<Types::ServerGroupLaunchConfiguration>]
1138
1442
  #
1139
1443
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/PutAppLaunchConfigurationRequest AWS API Documentation
@@ -1141,6 +1445,7 @@ module Aws::SMS
1141
1445
  class PutAppLaunchConfigurationRequest < Struct.new(
1142
1446
  :app_id,
1143
1447
  :role_name,
1448
+ :auto_launch,
1144
1449
  :server_group_launch_configurations)
1145
1450
  SENSITIVE = []
1146
1451
  include Aws::Structure
@@ -1192,12 +1497,12 @@ module Aws::SMS
1192
1497
  # }
1193
1498
  #
1194
1499
  # @!attribute [rw] app_id
1195
- # ID of the application tassociated with the replication
1196
- # configuration.
1500
+ # The ID of the application.
1197
1501
  # @return [String]
1198
1502
  #
1199
1503
  # @!attribute [rw] server_group_replication_configurations
1200
- # Replication configurations for server groups in the application.
1504
+ # Information about the replication configurations for server groups
1505
+ # in the application.
1201
1506
  # @return [Array<Types::ServerGroupReplicationConfiguration>]
1202
1507
  #
1203
1508
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/PutAppReplicationConfigurationRequest AWS API Documentation
@@ -1213,14 +1518,104 @@ module Aws::SMS
1213
1518
  #
1214
1519
  class PutAppReplicationConfigurationResponse < Aws::EmptyStructure; end
1215
1520
 
1521
+ # @note When making an API call, you may pass PutAppValidationConfigurationRequest
1522
+ # data as a hash:
1523
+ #
1524
+ # {
1525
+ # app_id: "AppIdWithValidation", # required
1526
+ # app_validation_configurations: [
1527
+ # {
1528
+ # validation_id: "ValidationId",
1529
+ # name: "NonEmptyStringWithMaxLen255",
1530
+ # app_validation_strategy: "SSM", # accepts SSM
1531
+ # ssm_validation_parameters: {
1532
+ # source: {
1533
+ # s3_location: {
1534
+ # bucket: "S3BucketName",
1535
+ # key: "S3KeyName",
1536
+ # },
1537
+ # },
1538
+ # instance_id: "InstanceId",
1539
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
1540
+ # command: "Command",
1541
+ # execution_timeout_seconds: 1,
1542
+ # output_s3_bucket_name: "BucketName",
1543
+ # },
1544
+ # },
1545
+ # ],
1546
+ # server_group_validation_configurations: [
1547
+ # {
1548
+ # server_group_id: "ServerGroupId",
1549
+ # server_validation_configurations: [
1550
+ # {
1551
+ # server: {
1552
+ # server_id: "ServerId",
1553
+ # server_type: "VIRTUAL_MACHINE", # accepts VIRTUAL_MACHINE
1554
+ # vm_server: {
1555
+ # vm_server_address: {
1556
+ # vm_manager_id: "VmManagerId",
1557
+ # vm_id: "VmId",
1558
+ # },
1559
+ # vm_name: "VmName",
1560
+ # vm_manager_name: "VmManagerName",
1561
+ # vm_manager_type: "VSPHERE", # accepts VSPHERE, SCVMM, HYPERV-MANAGER
1562
+ # vm_path: "VmPath",
1563
+ # },
1564
+ # replication_job_id: "ReplicationJobId",
1565
+ # replication_job_terminated: false,
1566
+ # },
1567
+ # validation_id: "ValidationId",
1568
+ # name: "NonEmptyStringWithMaxLen255",
1569
+ # server_validation_strategy: "USERDATA", # accepts USERDATA
1570
+ # user_data_validation_parameters: {
1571
+ # source: {
1572
+ # s3_location: {
1573
+ # bucket: "S3BucketName",
1574
+ # key: "S3KeyName",
1575
+ # },
1576
+ # },
1577
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
1578
+ # },
1579
+ # },
1580
+ # ],
1581
+ # },
1582
+ # ],
1583
+ # }
1584
+ #
1585
+ # @!attribute [rw] app_id
1586
+ # The ID of the application.
1587
+ # @return [String]
1588
+ #
1589
+ # @!attribute [rw] app_validation_configurations
1590
+ # The configuration for application validation.
1591
+ # @return [Array<Types::AppValidationConfiguration>]
1592
+ #
1593
+ # @!attribute [rw] server_group_validation_configurations
1594
+ # The configuration for instance validation.
1595
+ # @return [Array<Types::ServerGroupValidationConfiguration>]
1596
+ #
1597
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/PutAppValidationConfigurationRequest AWS API Documentation
1598
+ #
1599
+ class PutAppValidationConfigurationRequest < Struct.new(
1600
+ :app_id,
1601
+ :app_validation_configurations,
1602
+ :server_group_validation_configurations)
1603
+ SENSITIVE = []
1604
+ include Aws::Structure
1605
+ end
1606
+
1607
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/PutAppValidationConfigurationResponse AWS API Documentation
1608
+ #
1609
+ class PutAppValidationConfigurationResponse < Aws::EmptyStructure; end
1610
+
1216
1611
  # Represents a replication job.
1217
1612
  #
1218
1613
  # @!attribute [rw] replication_job_id
1219
- # The identifier of the replication job.
1614
+ # The ID of the replication job.
1220
1615
  # @return [String]
1221
1616
  #
1222
1617
  # @!attribute [rw] server_id
1223
- # The identifier of the server.
1618
+ # The ID of the server.
1224
1619
  # @return [String]
1225
1620
  #
1226
1621
  # @!attribute [rw] server_type
@@ -1240,6 +1635,7 @@ module Aws::SMS
1240
1635
  # @return [Integer]
1241
1636
  #
1242
1637
  # @!attribute [rw] run_once
1638
+ # Indicates whether to run the replication job one time.
1243
1639
  # @return [Boolean]
1244
1640
  #
1245
1641
  # @!attribute [rw] next_replication_run_start_time
@@ -1252,7 +1648,7 @@ module Aws::SMS
1252
1648
  # @return [String]
1253
1649
  #
1254
1650
  # @!attribute [rw] role_name
1255
- # The name of the IAM role to be used by the Server Migration Service.
1651
+ # The name of the IAM role to be used by AWS SMS.
1256
1652
  # @return [String]
1257
1653
  #
1258
1654
  # @!attribute [rw] latest_ami_id
@@ -1272,30 +1668,29 @@ module Aws::SMS
1272
1668
  # @return [String]
1273
1669
  #
1274
1670
  # @!attribute [rw] number_of_recent_amis_to_keep
1275
- # Number of recent AMIs to keep in the customer's account for a
1276
- # replication job. By default the value is set to zero, meaning that
1671
+ # The number of recent AMIs to keep in the customer's account for a
1672
+ # replication job. By default, the value is set to zero, meaning that
1277
1673
  # all AMIs are kept.
1278
1674
  # @return [Integer]
1279
1675
  #
1280
1676
  # @!attribute [rw] encrypted
1281
- # Whether the replication job should produce encrypted AMIs or not.
1282
- # See also `KmsKeyId` below.
1677
+ # Indicates whether the replication job should produce encrypted AMIs.
1283
1678
  # @return [Boolean]
1284
1679
  #
1285
1680
  # @!attribute [rw] kms_key_id
1286
- # KMS key ID for replication jobs that produce encrypted AMIs. Can be
1287
- # any of the following:
1681
+ # The ID of the KMS key for replication jobs that produce encrypted
1682
+ # AMIs. This value can be any of the following:
1288
1683
  #
1289
1684
  # * KMS key ID
1290
1685
  #
1291
1686
  # * KMS key alias
1292
1687
  #
1293
- # * ARN referring to KMS key ID
1688
+ # * ARN referring to the KMS key ID
1294
1689
  #
1295
- # * ARN referring to KMS key alias
1690
+ # * ARN referring to the KMS key alias
1296
1691
  #
1297
- # If encrypted is *true* but a KMS key id is not specified, the
1298
- # customer's default KMS key for EBS is used.
1692
+ # If encrypted is enabled but a KMS key ID is not specified, the
1693
+ # customer's default KMS key for Amazon EBS is used.
1299
1694
  # @return [String]
1300
1695
  #
1301
1696
  # @!attribute [rw] replication_run_list
@@ -1356,7 +1751,7 @@ module Aws::SMS
1356
1751
  # Represents a replication run.
1357
1752
  #
1358
1753
  # @!attribute [rw] replication_run_id
1359
- # The identifier of the replication run.
1754
+ # The ID of the replication run.
1360
1755
  # @return [String]
1361
1756
  #
1362
1757
  # @!attribute [rw] state
@@ -1368,7 +1763,7 @@ module Aws::SMS
1368
1763
  # @return [String]
1369
1764
  #
1370
1765
  # @!attribute [rw] stage_details
1371
- # Details of the current stage of the replication run.
1766
+ # Details about the current stage of the replication run.
1372
1767
  # @return [Types::ReplicationRunStageDetails]
1373
1768
  #
1374
1769
  # @!attribute [rw] status_message
@@ -1376,8 +1771,7 @@ module Aws::SMS
1376
1771
  # @return [String]
1377
1772
  #
1378
1773
  # @!attribute [rw] ami_id
1379
- # The identifier of the Amazon Machine Image (AMI) from the
1380
- # replication run.
1774
+ # The ID of the Amazon Machine Image (AMI) from the replication run.
1381
1775
  # @return [String]
1382
1776
  #
1383
1777
  # @!attribute [rw] scheduled_start_time
@@ -1393,24 +1787,24 @@ module Aws::SMS
1393
1787
  # @return [String]
1394
1788
  #
1395
1789
  # @!attribute [rw] encrypted
1396
- # Whether the replication run should produce encrypted AMI or not. See
1397
- # also `KmsKeyId` below.
1790
+ # Indicates whether the replication run should produce an encrypted
1791
+ # AMI.
1398
1792
  # @return [Boolean]
1399
1793
  #
1400
1794
  # @!attribute [rw] kms_key_id
1401
- # KMS key ID for replication jobs that produce encrypted AMIs. Can be
1402
- # any of the following:
1795
+ # The ID of the KMS key for replication jobs that produce encrypted
1796
+ # AMIs. This value can be any of the following:
1403
1797
  #
1404
1798
  # * KMS key ID
1405
1799
  #
1406
1800
  # * KMS key alias
1407
1801
  #
1408
- # * ARN referring to KMS key ID
1802
+ # * ARN referring to the KMS key ID
1409
1803
  #
1410
- # * ARN referring to KMS key alias
1804
+ # * ARN referring to the KMS key alias
1411
1805
  #
1412
- # If encrypted is *true* but a KMS key id is not specified, the
1413
- # customer's default KMS key for EBS is used.
1806
+ # If encrypted is *true* but a KMS key ID is not specified, the
1807
+ # customer's default KMS key for Amazon EBS is used.
1414
1808
  # @return [String]
1415
1809
  #
1416
1810
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ReplicationRun AWS API Documentation
@@ -1448,12 +1842,11 @@ module Aws::SMS
1448
1842
  # Details of the current stage of a replication run.
1449
1843
  #
1450
1844
  # @!attribute [rw] stage
1451
- # String describing the current stage of a replication run.
1845
+ # The current stage of a replication run.
1452
1846
  # @return [String]
1453
1847
  #
1454
1848
  # @!attribute [rw] stage_progress
1455
- # String describing the progress of the current stage of a replication
1456
- # run.
1849
+ # The progress of the current stage of a replication run.
1457
1850
  # @return [String]
1458
1851
  #
1459
1852
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ReplicationRunStageDetails AWS API Documentation
@@ -1465,22 +1858,22 @@ module Aws::SMS
1465
1858
  include Aws::Structure
1466
1859
  end
1467
1860
 
1468
- # Location of the Amazon S3 object in the customer's account.
1861
+ # Location of an Amazon S3 object.
1469
1862
  #
1470
1863
  # @note When making an API call, you may pass S3Location
1471
1864
  # data as a hash:
1472
1865
  #
1473
1866
  # {
1474
- # bucket: "BucketName",
1475
- # key: "KeyName",
1867
+ # bucket: "S3BucketName",
1868
+ # key: "S3KeyName",
1476
1869
  # }
1477
1870
  #
1478
1871
  # @!attribute [rw] bucket
1479
- # Amazon S3 bucket name.
1872
+ # The Amazon S3 bucket name.
1480
1873
  # @return [String]
1481
1874
  #
1482
1875
  # @!attribute [rw] key
1483
- # Amazon S3 bucket key.
1876
+ # The Amazon S3 bucket key.
1484
1877
  # @return [String]
1485
1878
  #
1486
1879
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/S3Location AWS API Documentation
@@ -1492,6 +1885,77 @@ module Aws::SMS
1492
1885
  include Aws::Structure
1493
1886
  end
1494
1887
 
1888
+ # Contains the location of validation output.
1889
+ #
1890
+ # @!attribute [rw] s3_location
1891
+ # Location of an Amazon S3 object.
1892
+ # @return [Types::S3Location]
1893
+ #
1894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/SSMOutput AWS API Documentation
1895
+ #
1896
+ class SSMOutput < Struct.new(
1897
+ :s3_location)
1898
+ SENSITIVE = []
1899
+ include Aws::Structure
1900
+ end
1901
+
1902
+ # Contains validation parameters.
1903
+ #
1904
+ # @note When making an API call, you may pass SSMValidationParameters
1905
+ # data as a hash:
1906
+ #
1907
+ # {
1908
+ # source: {
1909
+ # s3_location: {
1910
+ # bucket: "S3BucketName",
1911
+ # key: "S3KeyName",
1912
+ # },
1913
+ # },
1914
+ # instance_id: "InstanceId",
1915
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
1916
+ # command: "Command",
1917
+ # execution_timeout_seconds: 1,
1918
+ # output_s3_bucket_name: "BucketName",
1919
+ # }
1920
+ #
1921
+ # @!attribute [rw] source
1922
+ # The location of the validation script.
1923
+ # @return [Types::Source]
1924
+ #
1925
+ # @!attribute [rw] instance_id
1926
+ # The ID of the instance. The instance must have the following tag:
1927
+ # UserForSMSApplicationValidation=true.
1928
+ # @return [String]
1929
+ #
1930
+ # @!attribute [rw] script_type
1931
+ # The type of validation script.
1932
+ # @return [String]
1933
+ #
1934
+ # @!attribute [rw] command
1935
+ # The command to run the validation script
1936
+ # @return [String]
1937
+ #
1938
+ # @!attribute [rw] execution_timeout_seconds
1939
+ # The timeout interval, in seconds.
1940
+ # @return [Integer]
1941
+ #
1942
+ # @!attribute [rw] output_s3_bucket_name
1943
+ # The name of the S3 bucket for output.
1944
+ # @return [String]
1945
+ #
1946
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/SSMValidationParameters AWS API Documentation
1947
+ #
1948
+ class SSMValidationParameters < Struct.new(
1949
+ :source,
1950
+ :instance_id,
1951
+ :script_type,
1952
+ :command,
1953
+ :execution_timeout_seconds,
1954
+ :output_s3_bucket_name)
1955
+ SENSITIVE = []
1956
+ include Aws::Structure
1957
+ end
1958
+
1495
1959
  # Represents a server.
1496
1960
  #
1497
1961
  # @note When making an API call, you may pass Server
@@ -1515,7 +1979,7 @@ module Aws::SMS
1515
1979
  # }
1516
1980
  #
1517
1981
  # @!attribute [rw] server_id
1518
- # The identifier of the server.
1982
+ # The ID of the server.
1519
1983
  # @return [String]
1520
1984
  #
1521
1985
  # @!attribute [rw] server_type
@@ -1527,7 +1991,7 @@ module Aws::SMS
1527
1991
  # @return [Types::VmServer]
1528
1992
  #
1529
1993
  # @!attribute [rw] replication_job_id
1530
- # The identifier of the replication job.
1994
+ # The ID of the replication job.
1531
1995
  # @return [String]
1532
1996
  #
1533
1997
  # @!attribute [rw] replication_job_terminated
@@ -1559,7 +2023,7 @@ module Aws::SMS
1559
2023
  include Aws::Structure
1560
2024
  end
1561
2025
 
1562
- # A logical grouping of servers.
2026
+ # Logical grouping of servers.
1563
2027
  #
1564
2028
  # @note When making an API call, you may pass ServerGroup
1565
2029
  # data as a hash:
@@ -1588,15 +2052,15 @@ module Aws::SMS
1588
2052
  # }
1589
2053
  #
1590
2054
  # @!attribute [rw] server_group_id
1591
- # Identifier of a server group.
2055
+ # The ID of a server group.
1592
2056
  # @return [String]
1593
2057
  #
1594
2058
  # @!attribute [rw] name
1595
- # Name of a server group.
2059
+ # The name of a server group.
1596
2060
  # @return [String]
1597
2061
  #
1598
2062
  # @!attribute [rw] server_list
1599
- # List of servers belonging to a server group.
2063
+ # The servers that belong to a server group.
1600
2064
  # @return [Array<Types::Server>]
1601
2065
  #
1602
2066
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerGroup AWS API Documentation
@@ -1642,27 +2106,33 @@ module Aws::SMS
1642
2106
  # ec2_key_name: "EC2KeyName",
1643
2107
  # user_data: {
1644
2108
  # s3_location: {
1645
- # bucket: "BucketName",
1646
- # key: "KeyName",
2109
+ # bucket: "S3BucketName",
2110
+ # key: "S3KeyName",
1647
2111
  # },
1648
2112
  # },
1649
2113
  # instance_type: "InstanceType",
1650
2114
  # associate_public_ip_address: false,
2115
+ # iam_instance_profile_name: "RoleName",
2116
+ # configure_script: {
2117
+ # bucket: "S3BucketName",
2118
+ # key: "S3KeyName",
2119
+ # },
2120
+ # configure_script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
1651
2121
  # },
1652
2122
  # ],
1653
2123
  # }
1654
2124
  #
1655
2125
  # @!attribute [rw] server_group_id
1656
- # Identifier of the server group the launch configuration is
1657
- # associated with.
2126
+ # The ID of the server group with which the launch configuration is
2127
+ # associated.
1658
2128
  # @return [String]
1659
2129
  #
1660
2130
  # @!attribute [rw] launch_order
1661
- # Launch order of servers in the server group.
2131
+ # The launch order of servers in the server group.
1662
2132
  # @return [Integer]
1663
2133
  #
1664
2134
  # @!attribute [rw] server_launch_configurations
1665
- # Launch configuration for servers in the server group.
2135
+ # The launch configuration for servers in the server group.
1666
2136
  # @return [Array<Types::ServerLaunchConfiguration>]
1667
2137
  #
1668
2138
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerGroupLaunchConfiguration AWS API Documentation
@@ -1714,12 +2184,12 @@ module Aws::SMS
1714
2184
  # }
1715
2185
  #
1716
2186
  # @!attribute [rw] server_group_id
1717
- # Identifier of the server group this replication configuration is
1718
- # associated with.
2187
+ # The ID of the server group with which this replication configuration
2188
+ # is associated.
1719
2189
  # @return [String]
1720
2190
  #
1721
2191
  # @!attribute [rw] server_replication_configurations
1722
- # Replication configuration for servers in the server group.
2192
+ # The replication configuration for servers in the server group.
1723
2193
  # @return [Array<Types::ServerReplicationConfiguration>]
1724
2194
  #
1725
2195
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerGroupReplicationConfiguration AWS API Documentation
@@ -1731,6 +2201,64 @@ module Aws::SMS
1731
2201
  include Aws::Structure
1732
2202
  end
1733
2203
 
2204
+ # Configuration for validating an instance.
2205
+ #
2206
+ # @note When making an API call, you may pass ServerGroupValidationConfiguration
2207
+ # data as a hash:
2208
+ #
2209
+ # {
2210
+ # server_group_id: "ServerGroupId",
2211
+ # server_validation_configurations: [
2212
+ # {
2213
+ # server: {
2214
+ # server_id: "ServerId",
2215
+ # server_type: "VIRTUAL_MACHINE", # accepts VIRTUAL_MACHINE
2216
+ # vm_server: {
2217
+ # vm_server_address: {
2218
+ # vm_manager_id: "VmManagerId",
2219
+ # vm_id: "VmId",
2220
+ # },
2221
+ # vm_name: "VmName",
2222
+ # vm_manager_name: "VmManagerName",
2223
+ # vm_manager_type: "VSPHERE", # accepts VSPHERE, SCVMM, HYPERV-MANAGER
2224
+ # vm_path: "VmPath",
2225
+ # },
2226
+ # replication_job_id: "ReplicationJobId",
2227
+ # replication_job_terminated: false,
2228
+ # },
2229
+ # validation_id: "ValidationId",
2230
+ # name: "NonEmptyStringWithMaxLen255",
2231
+ # server_validation_strategy: "USERDATA", # accepts USERDATA
2232
+ # user_data_validation_parameters: {
2233
+ # source: {
2234
+ # s3_location: {
2235
+ # bucket: "S3BucketName",
2236
+ # key: "S3KeyName",
2237
+ # },
2238
+ # },
2239
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
2240
+ # },
2241
+ # },
2242
+ # ],
2243
+ # }
2244
+ #
2245
+ # @!attribute [rw] server_group_id
2246
+ # The ID of the server group.
2247
+ # @return [String]
2248
+ #
2249
+ # @!attribute [rw] server_validation_configurations
2250
+ # The validation configuration.
2251
+ # @return [Array<Types::ServerValidationConfiguration>]
2252
+ #
2253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerGroupValidationConfiguration AWS API Documentation
2254
+ #
2255
+ class ServerGroupValidationConfiguration < Struct.new(
2256
+ :server_group_id,
2257
+ :server_validation_configurations)
2258
+ SENSITIVE = []
2259
+ include Aws::Structure
2260
+ end
2261
+
1734
2262
  # Launch configuration for a server.
1735
2263
  #
1736
2264
  # @note When making an API call, you may pass ServerLaunchConfiguration
@@ -1760,39 +2288,44 @@ module Aws::SMS
1760
2288
  # ec2_key_name: "EC2KeyName",
1761
2289
  # user_data: {
1762
2290
  # s3_location: {
1763
- # bucket: "BucketName",
1764
- # key: "KeyName",
2291
+ # bucket: "S3BucketName",
2292
+ # key: "S3KeyName",
1765
2293
  # },
1766
2294
  # },
1767
2295
  # instance_type: "InstanceType",
1768
2296
  # associate_public_ip_address: false,
2297
+ # iam_instance_profile_name: "RoleName",
2298
+ # configure_script: {
2299
+ # bucket: "S3BucketName",
2300
+ # key: "S3KeyName",
2301
+ # },
2302
+ # configure_script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
1769
2303
  # }
1770
2304
  #
1771
2305
  # @!attribute [rw] server
1772
- # Identifier of the server the launch configuration is associated
1773
- # with.
2306
+ # The ID of the server with which the launch configuration is
2307
+ # associated.
1774
2308
  # @return [Types::Server]
1775
2309
  #
1776
2310
  # @!attribute [rw] logical_id
1777
- # Logical ID of the server in the Amazon CloudFormation template.
2311
+ # The logical ID of the server in the AWS CloudFormation template.
1778
2312
  # @return [String]
1779
2313
  #
1780
2314
  # @!attribute [rw] vpc
1781
- # Identifier of the VPC the server should be launched into.
2315
+ # The ID of the VPC into which the server should be launched.
1782
2316
  # @return [String]
1783
2317
  #
1784
2318
  # @!attribute [rw] subnet
1785
- # Identifier of the subnet the server should be launched into.
2319
+ # The ID of the subnet the server should be launched into.
1786
2320
  # @return [String]
1787
2321
  #
1788
2322
  # @!attribute [rw] security_group
1789
- # Identifier of the security group that applies to the launched
1790
- # server.
2323
+ # The ID of the security group that applies to the launched server.
1791
2324
  # @return [String]
1792
2325
  #
1793
2326
  # @!attribute [rw] ec2_key_name
1794
- # Name of the EC2 SSH Key to be used for connecting to the launched
1795
- # server.
2327
+ # The name of the Amazon EC2 SSH key to be used for connecting to the
2328
+ # launched server.
1796
2329
  # @return [String]
1797
2330
  #
1798
2331
  # @!attribute [rw] user_data
@@ -1801,14 +2334,26 @@ module Aws::SMS
1801
2334
  # @return [Types::UserData]
1802
2335
  #
1803
2336
  # @!attribute [rw] instance_type
1804
- # Instance type to be used for launching the server.
2337
+ # The instance type to use when launching the server.
1805
2338
  # @return [String]
1806
2339
  #
1807
2340
  # @!attribute [rw] associate_public_ip_address
1808
- # If true, a publicly accessible IP address is created when launching
1809
- # the server.
2341
+ # Indicates whether a publicly accessible IP address is created when
2342
+ # launching the server.
1810
2343
  # @return [Boolean]
1811
2344
  #
2345
+ # @!attribute [rw] iam_instance_profile_name
2346
+ # The name of the IAM instance profile.
2347
+ # @return [String]
2348
+ #
2349
+ # @!attribute [rw] configure_script
2350
+ # Location of an Amazon S3 object.
2351
+ # @return [Types::S3Location]
2352
+ #
2353
+ # @!attribute [rw] configure_script_type
2354
+ # The type of configuration script.
2355
+ # @return [String]
2356
+ #
1812
2357
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerLaunchConfiguration AWS API Documentation
1813
2358
  #
1814
2359
  class ServerLaunchConfiguration < Struct.new(
@@ -1820,7 +2365,10 @@ module Aws::SMS
1820
2365
  :ec2_key_name,
1821
2366
  :user_data,
1822
2367
  :instance_type,
1823
- :associate_public_ip_address)
2368
+ :associate_public_ip_address,
2369
+ :iam_instance_profile_name,
2370
+ :configure_script,
2371
+ :configure_script_type)
1824
2372
  SENSITIVE = []
1825
2373
  include Aws::Structure
1826
2374
  end
@@ -1859,12 +2407,12 @@ module Aws::SMS
1859
2407
  # }
1860
2408
  #
1861
2409
  # @!attribute [rw] server
1862
- # Identifier of the server this replication configuration is
1863
- # associated with.
2410
+ # The ID of the server with which this replication configuration is
2411
+ # associated.
1864
2412
  # @return [Types::Server]
1865
2413
  #
1866
2414
  # @!attribute [rw] server_replication_parameters
1867
- # Parameters for replicating the server.
2415
+ # The parameters for replicating the server.
1868
2416
  # @return [Types::ServerReplicationParameters]
1869
2417
  #
1870
2418
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerReplicationConfiguration AWS API Documentation
@@ -1876,7 +2424,7 @@ module Aws::SMS
1876
2424
  include Aws::Structure
1877
2425
  end
1878
2426
 
1879
- # Replication parameters for replicating a server.
2427
+ # The replication parameters for replicating a server.
1880
2428
  #
1881
2429
  # @note When making an API call, you may pass ServerReplicationParameters
1882
2430
  # data as a hash:
@@ -1892,44 +2440,44 @@ module Aws::SMS
1892
2440
  # }
1893
2441
  #
1894
2442
  # @!attribute [rw] seed_time
1895
- # Seed time for creating a replication job for the server.
2443
+ # The seed time for creating a replication job for the server.
1896
2444
  # @return [Time]
1897
2445
  #
1898
2446
  # @!attribute [rw] frequency
1899
- # Frequency of creating replication jobs for the server.
2447
+ # The frequency of creating replication jobs for the server.
1900
2448
  # @return [Integer]
1901
2449
  #
1902
2450
  # @!attribute [rw] run_once
2451
+ # Indicates whether to run the replication job one time.
1903
2452
  # @return [Boolean]
1904
2453
  #
1905
2454
  # @!attribute [rw] license_type
1906
- # License type for creating a replication job for the server.
2455
+ # The license type for creating a replication job for the server.
1907
2456
  # @return [String]
1908
2457
  #
1909
2458
  # @!attribute [rw] number_of_recent_amis_to_keep
1910
- # Number of recent AMIs to keep when creating a replication job for
1911
- # this server.
2459
+ # The number of recent AMIs to keep when creating a replication job
2460
+ # for this server.
1912
2461
  # @return [Integer]
1913
2462
  #
1914
2463
  # @!attribute [rw] encrypted
1915
- # When true, the replication job produces encrypted AMIs. See also
1916
- # `KmsKeyId` below.
2464
+ # Indicates whether the replication job produces encrypted AMIs.
1917
2465
  # @return [Boolean]
1918
2466
  #
1919
2467
  # @!attribute [rw] kms_key_id
1920
- # KMS key ID for replication jobs that produce encrypted AMIs. Can be
1921
- # any of the following:
2468
+ # The ID of the KMS key for replication jobs that produce encrypted
2469
+ # AMIs. This value can be any of the following:
1922
2470
  #
1923
2471
  # * KMS key ID
1924
2472
  #
1925
2473
  # * KMS key alias
1926
2474
  #
1927
- # * ARN referring to KMS key ID
2475
+ # * ARN referring to the KMS key ID
1928
2476
  #
1929
- # * ARN referring to KMS key alias
2477
+ # * ARN referring to the KMS key alias
1930
2478
  #
1931
- # If encrypted is *true* but a KMS key id is not specified, the
1932
- # customer's default KMS key for EBS is used.
2479
+ # If encrypted is enabled but a KMS key ID is not specified, the
2480
+ # customer's default KMS key for Amazon EBS is used.
1933
2481
  # @return [String]
1934
2482
  #
1935
2483
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerReplicationParameters AWS API Documentation
@@ -1946,6 +2494,112 @@ module Aws::SMS
1946
2494
  include Aws::Structure
1947
2495
  end
1948
2496
 
2497
+ # Configuration for validating an instance.
2498
+ #
2499
+ # @note When making an API call, you may pass ServerValidationConfiguration
2500
+ # data as a hash:
2501
+ #
2502
+ # {
2503
+ # server: {
2504
+ # server_id: "ServerId",
2505
+ # server_type: "VIRTUAL_MACHINE", # accepts VIRTUAL_MACHINE
2506
+ # vm_server: {
2507
+ # vm_server_address: {
2508
+ # vm_manager_id: "VmManagerId",
2509
+ # vm_id: "VmId",
2510
+ # },
2511
+ # vm_name: "VmName",
2512
+ # vm_manager_name: "VmManagerName",
2513
+ # vm_manager_type: "VSPHERE", # accepts VSPHERE, SCVMM, HYPERV-MANAGER
2514
+ # vm_path: "VmPath",
2515
+ # },
2516
+ # replication_job_id: "ReplicationJobId",
2517
+ # replication_job_terminated: false,
2518
+ # },
2519
+ # validation_id: "ValidationId",
2520
+ # name: "NonEmptyStringWithMaxLen255",
2521
+ # server_validation_strategy: "USERDATA", # accepts USERDATA
2522
+ # user_data_validation_parameters: {
2523
+ # source: {
2524
+ # s3_location: {
2525
+ # bucket: "S3BucketName",
2526
+ # key: "S3KeyName",
2527
+ # },
2528
+ # },
2529
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
2530
+ # },
2531
+ # }
2532
+ #
2533
+ # @!attribute [rw] server
2534
+ # Represents a server.
2535
+ # @return [Types::Server]
2536
+ #
2537
+ # @!attribute [rw] validation_id
2538
+ # The ID of the validation.
2539
+ # @return [String]
2540
+ #
2541
+ # @!attribute [rw] name
2542
+ # The name of the configuration.
2543
+ # @return [String]
2544
+ #
2545
+ # @!attribute [rw] server_validation_strategy
2546
+ # The validation strategy.
2547
+ # @return [String]
2548
+ #
2549
+ # @!attribute [rw] user_data_validation_parameters
2550
+ # The validation parameters.
2551
+ # @return [Types::UserDataValidationParameters]
2552
+ #
2553
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerValidationConfiguration AWS API Documentation
2554
+ #
2555
+ class ServerValidationConfiguration < Struct.new(
2556
+ :server,
2557
+ :validation_id,
2558
+ :name,
2559
+ :server_validation_strategy,
2560
+ :user_data_validation_parameters)
2561
+ SENSITIVE = []
2562
+ include Aws::Structure
2563
+ end
2564
+
2565
+ # Contains output from validating an instance.
2566
+ #
2567
+ # @!attribute [rw] server
2568
+ # Represents a server.
2569
+ # @return [Types::Server]
2570
+ #
2571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ServerValidationOutput AWS API Documentation
2572
+ #
2573
+ class ServerValidationOutput < Struct.new(
2574
+ :server)
2575
+ SENSITIVE = []
2576
+ include Aws::Structure
2577
+ end
2578
+
2579
+ # Contains the location of a validation script.
2580
+ #
2581
+ # @note When making an API call, you may pass Source
2582
+ # data as a hash:
2583
+ #
2584
+ # {
2585
+ # s3_location: {
2586
+ # bucket: "S3BucketName",
2587
+ # key: "S3KeyName",
2588
+ # },
2589
+ # }
2590
+ #
2591
+ # @!attribute [rw] s3_location
2592
+ # Location of an Amazon S3 object.
2593
+ # @return [Types::S3Location]
2594
+ #
2595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/Source AWS API Documentation
2596
+ #
2597
+ class Source < Struct.new(
2598
+ :s3_location)
2599
+ SENSITIVE = []
2600
+ include Aws::Structure
2601
+ end
2602
+
1949
2603
  # @note When making an API call, you may pass StartAppReplicationRequest
1950
2604
  # data as a hash:
1951
2605
  #
@@ -1954,7 +2608,7 @@ module Aws::SMS
1954
2608
  # }
1955
2609
  #
1956
2610
  # @!attribute [rw] app_id
1957
- # ID of the application to replicate.
2611
+ # The ID of the application.
1958
2612
  # @return [String]
1959
2613
  #
1960
2614
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/StartAppReplicationRequest AWS API Documentation
@@ -1969,6 +2623,35 @@ module Aws::SMS
1969
2623
  #
1970
2624
  class StartAppReplicationResponse < Aws::EmptyStructure; end
1971
2625
 
2626
+ # @note When making an API call, you may pass StartOnDemandAppReplicationRequest
2627
+ # data as a hash:
2628
+ #
2629
+ # {
2630
+ # app_id: "AppId", # required
2631
+ # description: "Description",
2632
+ # }
2633
+ #
2634
+ # @!attribute [rw] app_id
2635
+ # The ID of the application.
2636
+ # @return [String]
2637
+ #
2638
+ # @!attribute [rw] description
2639
+ # The description of the replication run.
2640
+ # @return [String]
2641
+ #
2642
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/StartOnDemandAppReplicationRequest AWS API Documentation
2643
+ #
2644
+ class StartOnDemandAppReplicationRequest < Struct.new(
2645
+ :app_id,
2646
+ :description)
2647
+ SENSITIVE = []
2648
+ include Aws::Structure
2649
+ end
2650
+
2651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/StartOnDemandAppReplicationResponse AWS API Documentation
2652
+ #
2653
+ class StartOnDemandAppReplicationResponse < Aws::EmptyStructure; end
2654
+
1972
2655
  # @note When making an API call, you may pass StartOnDemandReplicationRunRequest
1973
2656
  # data as a hash:
1974
2657
  #
@@ -1978,7 +2661,7 @@ module Aws::SMS
1978
2661
  # }
1979
2662
  #
1980
2663
  # @!attribute [rw] replication_job_id
1981
- # The identifier of the replication job.
2664
+ # The ID of the replication job.
1982
2665
  # @return [String]
1983
2666
  #
1984
2667
  # @!attribute [rw] description
@@ -1995,7 +2678,7 @@ module Aws::SMS
1995
2678
  end
1996
2679
 
1997
2680
  # @!attribute [rw] replication_run_id
1998
- # The identifier of the replication run.
2681
+ # The ID of the replication run.
1999
2682
  # @return [String]
2000
2683
  #
2001
2684
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/StartOnDemandReplicationRunResponse AWS API Documentation
@@ -2014,7 +2697,7 @@ module Aws::SMS
2014
2697
  # }
2015
2698
  #
2016
2699
  # @!attribute [rw] app_id
2017
- # ID of the application to stop replicating.
2700
+ # The ID of the application.
2018
2701
  # @return [String]
2019
2702
  #
2020
2703
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/StopAppReplicationRequest AWS API Documentation
@@ -2029,7 +2712,7 @@ module Aws::SMS
2029
2712
  #
2030
2713
  class StopAppReplicationResponse < Aws::EmptyStructure; end
2031
2714
 
2032
- # A label that can be assigned to an application.
2715
+ # Key/value pair that can be assigned to an application.
2033
2716
  #
2034
2717
  # @note When making an API call, you may pass Tag
2035
2718
  # data as a hash:
@@ -2040,11 +2723,11 @@ module Aws::SMS
2040
2723
  # }
2041
2724
  #
2042
2725
  # @!attribute [rw] key
2043
- # Tag key.
2726
+ # The tag key.
2044
2727
  # @return [String]
2045
2728
  #
2046
2729
  # @!attribute [rw] value
2047
- # Tag value.
2730
+ # The tag value.
2048
2731
  # @return [String]
2049
2732
  #
2050
2733
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/Tag AWS API Documentation
@@ -2070,7 +2753,7 @@ module Aws::SMS
2070
2753
  # }
2071
2754
  #
2072
2755
  # @!attribute [rw] app_id
2073
- # ID of the application to terminate.
2756
+ # The ID of the application.
2074
2757
  # @return [String]
2075
2758
  #
2076
2759
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/TerminateAppRequest AWS API Documentation
@@ -2140,27 +2823,28 @@ module Aws::SMS
2140
2823
  # }
2141
2824
  #
2142
2825
  # @!attribute [rw] app_id
2143
- # ID of the application to update.
2826
+ # The ID of the application.
2144
2827
  # @return [String]
2145
2828
  #
2146
2829
  # @!attribute [rw] name
2147
- # New name of the application.
2830
+ # The new name of the application.
2148
2831
  # @return [String]
2149
2832
  #
2150
2833
  # @!attribute [rw] description
2151
- # New description of the application.
2834
+ # The new description of the application.
2152
2835
  # @return [String]
2153
2836
  #
2154
2837
  # @!attribute [rw] role_name
2155
- # Name of the service role in the customer's account used by AWS SMS.
2838
+ # The name of the service role in the customer's account used by AWS
2839
+ # SMS.
2156
2840
  # @return [String]
2157
2841
  #
2158
2842
  # @!attribute [rw] server_groups
2159
- # List of server groups in the application to update.
2843
+ # The server groups in the application to update.
2160
2844
  # @return [Array<Types::ServerGroup>]
2161
2845
  #
2162
2846
  # @!attribute [rw] tags
2163
- # List of tags to associate with the application.
2847
+ # The tags to associate with the application.
2164
2848
  # @return [Array<Types::Tag>]
2165
2849
  #
2166
2850
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/UpdateAppRequest AWS API Documentation
@@ -2177,15 +2861,15 @@ module Aws::SMS
2177
2861
  end
2178
2862
 
2179
2863
  # @!attribute [rw] app_summary
2180
- # Summary description of the application.
2864
+ # A summary description of the application.
2181
2865
  # @return [Types::AppSummary]
2182
2866
  #
2183
2867
  # @!attribute [rw] server_groups
2184
- # List of updated server groups in the application.
2868
+ # The updated server groups in the application.
2185
2869
  # @return [Array<Types::ServerGroup>]
2186
2870
  #
2187
2871
  # @!attribute [rw] tags
2188
- # List of tags associated with the application.
2872
+ # The tags associated with the application.
2189
2873
  # @return [Array<Types::Tag>]
2190
2874
  #
2191
2875
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/UpdateAppResponse AWS API Documentation
@@ -2214,7 +2898,7 @@ module Aws::SMS
2214
2898
  # }
2215
2899
  #
2216
2900
  # @!attribute [rw] replication_job_id
2217
- # The identifier of the replication job.
2901
+ # The ID of the replication job.
2218
2902
  # @return [String]
2219
2903
  #
2220
2904
  # @!attribute [rw] frequency
@@ -2239,29 +2923,30 @@ module Aws::SMS
2239
2923
  # @return [String]
2240
2924
  #
2241
2925
  # @!attribute [rw] number_of_recent_amis_to_keep
2242
- # The maximum number of SMS-created AMIs to retain. The oldest will be
2243
- # deleted once the maximum number is reached and a new AMI is created.
2926
+ # The maximum number of SMS-created AMIs to retain. The oldest is
2927
+ # deleted after the maximum number is reached and a new AMI is
2928
+ # created.
2244
2929
  # @return [Integer]
2245
2930
  #
2246
2931
  # @!attribute [rw] encrypted
2247
- # When true, the replication job produces encrypted AMIs . See also
2248
- # `KmsKeyId` below.
2932
+ # When true, the replication job produces encrypted AMIs. For more
2933
+ # information, `KmsKeyId`.
2249
2934
  # @return [Boolean]
2250
2935
  #
2251
2936
  # @!attribute [rw] kms_key_id
2252
- # KMS key ID for replication jobs that produce encrypted AMIs. Can be
2253
- # any of the following:
2937
+ # The ID of the KMS key for replication jobs that produce encrypted
2938
+ # AMIs. This value can be any of the following:
2254
2939
  #
2255
2940
  # * KMS key ID
2256
2941
  #
2257
2942
  # * KMS key alias
2258
2943
  #
2259
- # * ARN referring to KMS key ID
2944
+ # * ARN referring to the KMS key ID
2260
2945
  #
2261
- # * ARN referring to KMS key alias
2946
+ # * ARN referring to the KMS key alias
2262
2947
  #
2263
- # If encrypted is *true* but a KMS key id is not specified, the
2264
- # customer's default KMS key for EBS is used.
2948
+ # If encrypted is enabled but a KMS key ID is not specified, the
2949
+ # customer's default KMS key for Amazon EBS is used.
2265
2950
  # @return [String]
2266
2951
  #
2267
2952
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/UpdateReplicationJobRequest AWS API Documentation
@@ -2292,8 +2977,8 @@ module Aws::SMS
2292
2977
  #
2293
2978
  # {
2294
2979
  # s3_location: {
2295
- # bucket: "BucketName",
2296
- # key: "KeyName",
2980
+ # bucket: "S3BucketName",
2981
+ # key: "S3KeyName",
2297
2982
  # },
2298
2983
  # }
2299
2984
  #
@@ -2309,6 +2994,82 @@ module Aws::SMS
2309
2994
  include Aws::Structure
2310
2995
  end
2311
2996
 
2997
+ # Contains validation parameters.
2998
+ #
2999
+ # @note When making an API call, you may pass UserDataValidationParameters
3000
+ # data as a hash:
3001
+ #
3002
+ # {
3003
+ # source: {
3004
+ # s3_location: {
3005
+ # bucket: "S3BucketName",
3006
+ # key: "S3KeyName",
3007
+ # },
3008
+ # },
3009
+ # script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
3010
+ # }
3011
+ #
3012
+ # @!attribute [rw] source
3013
+ # The location of the validation script.
3014
+ # @return [Types::Source]
3015
+ #
3016
+ # @!attribute [rw] script_type
3017
+ # The type of validation script.
3018
+ # @return [String]
3019
+ #
3020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/UserDataValidationParameters AWS API Documentation
3021
+ #
3022
+ class UserDataValidationParameters < Struct.new(
3023
+ :source,
3024
+ :script_type)
3025
+ SENSITIVE = []
3026
+ include Aws::Structure
3027
+ end
3028
+
3029
+ # Contains validation output.
3030
+ #
3031
+ # @!attribute [rw] validation_id
3032
+ # The ID of the validation.
3033
+ # @return [String]
3034
+ #
3035
+ # @!attribute [rw] name
3036
+ # The name of the validation.
3037
+ # @return [String]
3038
+ #
3039
+ # @!attribute [rw] status
3040
+ # The status of the validation.
3041
+ # @return [String]
3042
+ #
3043
+ # @!attribute [rw] status_message
3044
+ # The status message.
3045
+ # @return [String]
3046
+ #
3047
+ # @!attribute [rw] latest_validation_time
3048
+ # The latest time that the validation was performed.
3049
+ # @return [Time]
3050
+ #
3051
+ # @!attribute [rw] app_validation_output
3052
+ # The output from validating an application.
3053
+ # @return [Types::AppValidationOutput]
3054
+ #
3055
+ # @!attribute [rw] server_validation_output
3056
+ # The output from validation an instance.
3057
+ # @return [Types::ServerValidationOutput]
3058
+ #
3059
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/ValidationOutput AWS API Documentation
3060
+ #
3061
+ class ValidationOutput < Struct.new(
3062
+ :validation_id,
3063
+ :name,
3064
+ :status,
3065
+ :status_message,
3066
+ :latest_validation_time,
3067
+ :app_validation_output,
3068
+ :server_validation_output)
3069
+ SENSITIVE = []
3070
+ include Aws::Structure
3071
+ end
3072
+
2312
3073
  # Represents a VM server.
2313
3074
  #
2314
3075
  # @note When making an API call, you may pass VmServer
@@ -2326,7 +3087,7 @@ module Aws::SMS
2326
3087
  # }
2327
3088
  #
2328
3089
  # @!attribute [rw] vm_server_address
2329
- # Information about the VM server location.
3090
+ # The VM server location.
2330
3091
  # @return [Types::VmServerAddress]
2331
3092
  #
2332
3093
  # @!attribute [rw] vm_name
@@ -2369,11 +3130,11 @@ module Aws::SMS
2369
3130
  # }
2370
3131
  #
2371
3132
  # @!attribute [rw] vm_manager_id
2372
- # The identifier of the VM manager.
3133
+ # The ID of the VM manager.
2373
3134
  # @return [String]
2374
3135
  #
2375
3136
  # @!attribute [rw] vm_id
2376
- # The identifier of the VM.
3137
+ # The ID of the VM.
2377
3138
  # @return [String]
2378
3139
  #
2379
3140
  # @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/VmServerAddress AWS API Documentation