aws-sdk-controltower 1.12.0 → 1.14.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.
@@ -10,7 +10,7 @@
10
10
  module Aws::ControlTower
11
11
  module Types
12
12
 
13
- # User does not have sufficient access to perform this action.
13
+ # You do not have sufficient access to perform this action.
14
14
  #
15
15
  # @!attribute [rw] message
16
16
  # @return [String]
@@ -23,7 +23,7 @@ module Aws::ControlTower
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
- # Updating or deleting a resource can cause an inconsistent state.
26
+ # Updating or deleting the resource can cause an inconsistent state.
27
27
  #
28
28
  # @!attribute [rw] message
29
29
  # @return [String]
@@ -71,11 +71,83 @@ module Aws::ControlTower
71
71
  include Aws::Structure
72
72
  end
73
73
 
74
+ # @!attribute [rw] manifest
75
+ # The manifest.yaml file is a text file that describes your Amazon Web
76
+ # Services resources. For examples, review [The manifest file][1].
77
+ #
78
+ #
79
+ #
80
+ # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file
81
+ # @return [Hash,Array,String,Numeric,Boolean]
82
+ #
83
+ # @!attribute [rw] tags
84
+ # Tags to be applied to the landing zone.
85
+ # @return [Hash<String,String>]
86
+ #
87
+ # @!attribute [rw] version
88
+ # The landing zone version, for example, 3.0.
89
+ # @return [String]
90
+ #
91
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/CreateLandingZoneInput AWS API Documentation
92
+ #
93
+ class CreateLandingZoneInput < Struct.new(
94
+ :manifest,
95
+ :tags,
96
+ :version)
97
+ SENSITIVE = []
98
+ include Aws::Structure
99
+ end
100
+
101
+ # @!attribute [rw] arn
102
+ # The ARN of the landing zone resource.
103
+ # @return [String]
104
+ #
105
+ # @!attribute [rw] operation_identifier
106
+ # A unique identifier assigned to a `CreateLandingZone` operation. You
107
+ # can use this identifier as an input of `GetLandingZoneOperation` to
108
+ # check the operation's status.
109
+ # @return [String]
110
+ #
111
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/CreateLandingZoneOutput AWS API Documentation
112
+ #
113
+ class CreateLandingZoneOutput < Struct.new(
114
+ :arn,
115
+ :operation_identifier)
116
+ SENSITIVE = []
117
+ include Aws::Structure
118
+ end
119
+
120
+ # @!attribute [rw] landing_zone_identifier
121
+ # The unique identifier of the landing zone.
122
+ # @return [String]
123
+ #
124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/DeleteLandingZoneInput AWS API Documentation
125
+ #
126
+ class DeleteLandingZoneInput < Struct.new(
127
+ :landing_zone_identifier)
128
+ SENSITIVE = []
129
+ include Aws::Structure
130
+ end
131
+
132
+ # @!attribute [rw] operation_identifier
133
+ # &gt;A unique identifier assigned to a `DeleteLandingZone` operation.
134
+ # You can use this identifier as an input parameter of
135
+ # `GetLandingZoneOperation` to check the operation's status.
136
+ # @return [String]
137
+ #
138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/DeleteLandingZoneOutput AWS API Documentation
139
+ #
140
+ class DeleteLandingZoneOutput < Struct.new(
141
+ :operation_identifier)
142
+ SENSITIVE = []
143
+ include Aws::Structure
144
+ end
145
+
74
146
  # @!attribute [rw] control_identifier
75
147
  # The ARN of the control. Only **Strongly recommended** and
76
148
  # **Elective** controls are permitted, with the exception of the
77
- # **Region deny** control. For information on how to find the
78
- # `controlIdentifier`, see [the overview page][1].
149
+ # **landing zone Region deny** control. For information on how to find
150
+ # the `controlIdentifier`, see [the overview page][1].
79
151
  #
80
152
  #
81
153
  #
@@ -115,10 +187,11 @@ module Aws::ControlTower
115
187
 
116
188
  # The drift summary of the enabled control.
117
189
  #
118
- # AWS Control Tower expects the enabled control configuration to include
119
- # all supported and governed Regions. If the enabled control differs
120
- # from the expected configuration, it is defined to be in a state of
121
- # drift. You can repair this drift by resetting the enabled control.
190
+ # Amazon Web Services Control Tower expects the enabled control
191
+ # configuration to include all supported and governed Regions. If the
192
+ # enabled control differs from the expected configuration, it is defined
193
+ # to be in a state of drift. You can repair this drift by resetting the
194
+ # enabled control.
122
195
  #
123
196
  # @!attribute [rw] drift_status
124
197
  # The drift status of the enabled control.
@@ -126,16 +199,19 @@ module Aws::ControlTower
126
199
  # Valid values:
127
200
  #
128
201
  # * `DRIFTED`: The `enabledControl` deployed in this configuration
129
- # doesn’t match the configuration that AWS Control Tower expected.
202
+ # doesn’t match the configuration that Amazon Web Services Control
203
+ # Tower expected.
130
204
  #
131
205
  # * `IN_SYNC`: The `enabledControl` deployed in this configuration
132
- # matches the configuration that AWS Control Tower expected.
206
+ # matches the configuration that Amazon Web Services Control Tower
207
+ # expected.
133
208
  #
134
- # * `NOT_CHECKING`: AWS Control Tower does not check drift for this
135
- # enabled control. Drift is not supported for the control type.
209
+ # * `NOT_CHECKING`: Amazon Web Services Control Tower does not check
210
+ # drift for this enabled control. Drift is not supported for the
211
+ # control type.
136
212
  #
137
- # * `UNKNOWN`: AWS Control Tower is not able to check the drift status
138
- # for the enabled control.
213
+ # * `UNKNOWN`: Amazon Web Services Control Tower is not able to check
214
+ # the drift status for the enabled control.
139
215
  # @return [String]
140
216
  #
141
217
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/DriftStatusSummary AWS API Documentation
@@ -149,14 +225,18 @@ module Aws::ControlTower
149
225
  # @!attribute [rw] control_identifier
150
226
  # The ARN of the control. Only **Strongly recommended** and
151
227
  # **Elective** controls are permitted, with the exception of the
152
- # **Region deny** control. For information on how to find the
153
- # `controlIdentifier`, see [the overview page][1].
228
+ # **landing zone Region deny** control. For information on how to find
229
+ # the `controlIdentifier`, see [the overview page][1].
154
230
  #
155
231
  #
156
232
  #
157
233
  # [1]: https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html
158
234
  # @return [String]
159
235
  #
236
+ # @!attribute [rw] parameters
237
+ # An array of `EnabledControlParameter` objects
238
+ # @return [Array<Types::EnabledControlParameter>]
239
+ #
160
240
  # @!attribute [rw] tags
161
241
  # Tags to be applied to the `EnabledControl` resource.
162
242
  # @return [Hash<String,String>]
@@ -174,6 +254,7 @@ module Aws::ControlTower
174
254
  #
175
255
  class EnableControlInput < Struct.new(
176
256
  :control_identifier,
257
+ :parameters,
177
258
  :tags,
178
259
  :target_identifier)
179
260
  SENSITIVE = []
@@ -217,6 +298,10 @@ module Aws::ControlTower
217
298
  # The drift status of the enabled control.
218
299
  # @return [Types::DriftStatusSummary]
219
300
  #
301
+ # @!attribute [rw] parameters
302
+ # Array of `EnabledControlParameter` objects.
303
+ # @return [Array<Types::EnabledControlParameterSummary>]
304
+ #
220
305
  # @!attribute [rw] status_summary
221
306
  # The deployment summary of the enabled control.
222
307
  # @return [Types::EnablementStatusSummary]
@@ -231,7 +316,7 @@ module Aws::ControlTower
231
316
  # @return [String]
232
317
  #
233
318
  # @!attribute [rw] target_regions
234
- # Target AWS Regions for the enabled control.
319
+ # Target Amazon Web Services Regions for the enabled control.
235
320
  # @return [Array<Types::Region>]
236
321
  #
237
322
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledControlDetails AWS API Documentation
@@ -240,6 +325,7 @@ module Aws::ControlTower
240
325
  :arn,
241
326
  :control_identifier,
242
327
  :drift_status_summary,
328
+ :parameters,
243
329
  :status_summary,
244
330
  :target_identifier,
245
331
  :target_regions)
@@ -247,6 +333,48 @@ module Aws::ControlTower
247
333
  include Aws::Structure
248
334
  end
249
335
 
336
+ # A set of parameters that configure the behavior of the enabled
337
+ # control. A key/value pair, where `Key` is of type `String` and `Value`
338
+ # is of type `Document`.
339
+ #
340
+ # @!attribute [rw] key
341
+ # The key of a key/value pair. It is of type `string`.
342
+ # @return [String]
343
+ #
344
+ # @!attribute [rw] value
345
+ # The value of a key/value pair. It can be of type `array` `string`,
346
+ # `number`, `object`, or `boolean`.
347
+ # @return [Hash,Array,String,Numeric,Boolean]
348
+ #
349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledControlParameter AWS API Documentation
350
+ #
351
+ class EnabledControlParameter < Struct.new(
352
+ :key,
353
+ :value)
354
+ SENSITIVE = []
355
+ include Aws::Structure
356
+ end
357
+
358
+ # Returns a summary of information about the parameters of an enabled
359
+ # control.
360
+ #
361
+ # @!attribute [rw] key
362
+ # The key of a key/value pair.
363
+ # @return [String]
364
+ #
365
+ # @!attribute [rw] value
366
+ # The value of a key/value pair.
367
+ # @return [Hash,Array,String,Numeric,Boolean]
368
+ #
369
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledControlParameterSummary AWS API Documentation
370
+ #
371
+ class EnabledControlParameterSummary < Struct.new(
372
+ :key,
373
+ :value)
374
+ SENSITIVE = []
375
+ include Aws::Structure
376
+ end
377
+
250
378
  # Returns a summary of information about an enabled control.
251
379
  #
252
380
  # @!attribute [rw] arn
@@ -358,7 +486,55 @@ module Aws::ControlTower
358
486
  include Aws::Structure
359
487
  end
360
488
 
361
- # Unexpected error during processing of request.
489
+ # @!attribute [rw] landing_zone_identifier
490
+ # The unique identifier of the landing zone.
491
+ # @return [String]
492
+ #
493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetLandingZoneInput AWS API Documentation
494
+ #
495
+ class GetLandingZoneInput < Struct.new(
496
+ :landing_zone_identifier)
497
+ SENSITIVE = []
498
+ include Aws::Structure
499
+ end
500
+
501
+ # @!attribute [rw] operation_identifier
502
+ # A unique identifier assigned to a landing zone operation.
503
+ # @return [String]
504
+ #
505
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetLandingZoneOperationInput AWS API Documentation
506
+ #
507
+ class GetLandingZoneOperationInput < Struct.new(
508
+ :operation_identifier)
509
+ SENSITIVE = []
510
+ include Aws::Structure
511
+ end
512
+
513
+ # @!attribute [rw] operation_details
514
+ # Details about a landing zone operation.
515
+ # @return [Types::LandingZoneOperationDetail]
516
+ #
517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetLandingZoneOperationOutput AWS API Documentation
518
+ #
519
+ class GetLandingZoneOperationOutput < Struct.new(
520
+ :operation_details)
521
+ SENSITIVE = []
522
+ include Aws::Structure
523
+ end
524
+
525
+ # @!attribute [rw] landing_zone
526
+ # Information about the landing zone.
527
+ # @return [Types::LandingZoneDetail]
528
+ #
529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetLandingZoneOutput AWS API Documentation
530
+ #
531
+ class GetLandingZoneOutput < Struct.new(
532
+ :landing_zone)
533
+ SENSITIVE = []
534
+ include Aws::Structure
535
+ end
536
+
537
+ # An unexpected error occurred during processing of a request.
362
538
  #
363
539
  # @!attribute [rw] message
364
540
  # @return [String]
@@ -371,6 +547,138 @@ module Aws::ControlTower
371
547
  include Aws::Structure
372
548
  end
373
549
 
550
+ # Information about the landing zone.
551
+ #
552
+ # @!attribute [rw] arn
553
+ # The ARN of the landing zone.
554
+ # @return [String]
555
+ #
556
+ # @!attribute [rw] drift_status
557
+ # The drift status of the landing zone.
558
+ # @return [Types::LandingZoneDriftStatusSummary]
559
+ #
560
+ # @!attribute [rw] latest_available_version
561
+ # The latest available version of the landing zone.
562
+ # @return [String]
563
+ #
564
+ # @!attribute [rw] manifest
565
+ # The landing zone `manifest.yaml` text file that specifies the
566
+ # landing zone configurations.
567
+ # @return [Hash,Array,String,Numeric,Boolean]
568
+ #
569
+ # @!attribute [rw] status
570
+ # The landing zone deployment status.
571
+ # @return [String]
572
+ #
573
+ # @!attribute [rw] version
574
+ # The landing zone's current deployed version.
575
+ # @return [String]
576
+ #
577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/LandingZoneDetail AWS API Documentation
578
+ #
579
+ class LandingZoneDetail < Struct.new(
580
+ :arn,
581
+ :drift_status,
582
+ :latest_available_version,
583
+ :manifest,
584
+ :status,
585
+ :version)
586
+ SENSITIVE = []
587
+ include Aws::Structure
588
+ end
589
+
590
+ # The drift status summary of the landing zone.
591
+ #
592
+ # If the landing zone differs from the expected configuration, it is
593
+ # defined to be in a state of drift. You can repair this drift by
594
+ # resetting the landing zone.
595
+ #
596
+ # @!attribute [rw] status
597
+ # The drift status of the landing zone.
598
+ #
599
+ # Valid values:
600
+ #
601
+ # * `DRIFTED`: The landing zone deployed in this configuration does
602
+ # not match the configuration that Amazon Web Services Control Tower
603
+ # expected.
604
+ #
605
+ # * `IN_SYNC`: The landing zone deployed in this configuration matches
606
+ # the configuration that Amazon Web Services Control Tower expected.
607
+ # @return [String]
608
+ #
609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/LandingZoneDriftStatusSummary AWS API Documentation
610
+ #
611
+ class LandingZoneDriftStatusSummary < Struct.new(
612
+ :status)
613
+ SENSITIVE = []
614
+ include Aws::Structure
615
+ end
616
+
617
+ # Information about a landing zone operation.
618
+ #
619
+ # @!attribute [rw] end_time
620
+ # The landing zone operation end time.
621
+ # @return [Time]
622
+ #
623
+ # @!attribute [rw] operation_type
624
+ # The landing zone operation type.
625
+ #
626
+ # Valid values:
627
+ #
628
+ # * `DELETE`: The `DeleteLandingZone` operation.
629
+ #
630
+ # * `CREATE`: The `CreateLandingZone` operation.
631
+ #
632
+ # * `UPDATE`: The `UpdateLandingZone` operation.
633
+ #
634
+ # * `RESET`: The `ResetLandingZone` operation.
635
+ # @return [String]
636
+ #
637
+ # @!attribute [rw] start_time
638
+ # The landing zone operation start time.
639
+ # @return [Time]
640
+ #
641
+ # @!attribute [rw] status
642
+ # Valid values:
643
+ #
644
+ # * `SUCCEEDED`: The landing zone operation succeeded.
645
+ #
646
+ # * `IN_PROGRESS`: The landing zone operation is in progress.
647
+ #
648
+ # * `FAILED`: The landing zone operation failed.
649
+ # @return [String]
650
+ #
651
+ # @!attribute [rw] status_message
652
+ # If the operation result is FAILED, this string contains a message
653
+ # explaining why the operation failed.
654
+ # @return [String]
655
+ #
656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/LandingZoneOperationDetail AWS API Documentation
657
+ #
658
+ class LandingZoneOperationDetail < Struct.new(
659
+ :end_time,
660
+ :operation_type,
661
+ :start_time,
662
+ :status,
663
+ :status_message)
664
+ SENSITIVE = []
665
+ include Aws::Structure
666
+ end
667
+
668
+ # Returns a summary of information about a landing zone.
669
+ #
670
+ # @!attribute [rw] arn
671
+ # The ARN of the landing zone.
672
+ # @return [String]
673
+ #
674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/LandingZoneSummary AWS API Documentation
675
+ #
676
+ class LandingZoneSummary < Struct.new(
677
+ :arn)
678
+ SENSITIVE = []
679
+ include Aws::Structure
680
+ end
681
+
374
682
  # @!attribute [rw] max_results
375
683
  # How many results to return per API call.
376
684
  # @return [Integer]
@@ -400,13 +708,13 @@ module Aws::ControlTower
400
708
  end
401
709
 
402
710
  # @!attribute [rw] enabled_controls
403
- # Lists the controls enabled by AWS Control Tower on the specified
404
- # organizational unit and the accounts it contains.
711
+ # Lists the controls enabled by Amazon Web Services Control Tower on
712
+ # the specified organizational unit and the accounts it contains.
405
713
  # @return [Array<Types::EnabledControlSummary>]
406
714
  #
407
715
  # @!attribute [rw] next_token
408
716
  # Retrieves the next page of results. If the string is empty, the
409
- # current response is the end of the results.
717
+ # response is the end of the results.
410
718
  # @return [String]
411
719
  #
412
720
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListEnabledControlsOutput AWS API Documentation
@@ -418,6 +726,42 @@ module Aws::ControlTower
418
726
  include Aws::Structure
419
727
  end
420
728
 
729
+ # @!attribute [rw] max_results
730
+ # The maximum number of returned landing zone ARNs, which is one.
731
+ # @return [Integer]
732
+ #
733
+ # @!attribute [rw] next_token
734
+ # The token to continue the list from a previous API call with the
735
+ # same parameters.
736
+ # @return [String]
737
+ #
738
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListLandingZonesInput AWS API Documentation
739
+ #
740
+ class ListLandingZonesInput < Struct.new(
741
+ :max_results,
742
+ :next_token)
743
+ SENSITIVE = []
744
+ include Aws::Structure
745
+ end
746
+
747
+ # @!attribute [rw] landing_zones
748
+ # The ARN of the landing zone.
749
+ # @return [Array<Types::LandingZoneSummary>]
750
+ #
751
+ # @!attribute [rw] next_token
752
+ # Retrieves the next page of results. If the string is empty, the
753
+ # response is the end of the results.
754
+ # @return [String]
755
+ #
756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListLandingZonesOutput AWS API Documentation
757
+ #
758
+ class ListLandingZonesOutput < Struct.new(
759
+ :landing_zones,
760
+ :next_token)
761
+ SENSITIVE = []
762
+ include Aws::Structure
763
+ end
764
+
421
765
  # @!attribute [rw] resource_arn
422
766
  # The ARN of the resource.
423
767
  # @return [String]
@@ -442,8 +786,8 @@ module Aws::ControlTower
442
786
  include Aws::Structure
443
787
  end
444
788
 
445
- # An AWS Region in which AWS Control Tower expects to find the control
446
- # deployed.
789
+ # An Amazon Web Services Region in which Amazon Web Services Control
790
+ # Tower expects to find the control deployed.
447
791
  #
448
792
  # The expected Regions are based on the Regions that are governed by the
449
793
  # landing zone. In certain cases, a control is not actually enabled in
@@ -455,7 +799,7 @@ module Aws::ControlTower
455
799
  # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/region-how.html#mixed-governance
456
800
  #
457
801
  # @!attribute [rw] name
458
- # The AWS Region name.
802
+ # The Amazon Web Services Region name.
459
803
  # @return [String]
460
804
  #
461
805
  # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/Region AWS API Documentation
@@ -466,7 +810,33 @@ module Aws::ControlTower
466
810
  include Aws::Structure
467
811
  end
468
812
 
469
- # Request references a resource which does not exist.
813
+ # @!attribute [rw] landing_zone_identifier
814
+ # The unique identifier of the landing zone.
815
+ # @return [String]
816
+ #
817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ResetLandingZoneInput AWS API Documentation
818
+ #
819
+ class ResetLandingZoneInput < Struct.new(
820
+ :landing_zone_identifier)
821
+ SENSITIVE = []
822
+ include Aws::Structure
823
+ end
824
+
825
+ # @!attribute [rw] operation_identifier
826
+ # A unique identifier assigned to a `ResetLandingZone` operation. You
827
+ # can use this identifier as an input parameter of
828
+ # `GetLandingZoneOperation` to check the operation's status.
829
+ # @return [String]
830
+ #
831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ResetLandingZoneOutput AWS API Documentation
832
+ #
833
+ class ResetLandingZoneOutput < Struct.new(
834
+ :operation_identifier)
835
+ SENSITIVE = []
836
+ include Aws::Structure
837
+ end
838
+
839
+ # The request references a resource that does not exist.
470
840
  #
471
841
  # @!attribute [rw] message
472
842
  # @return [String]
@@ -479,8 +849,8 @@ module Aws::ControlTower
479
849
  include Aws::Structure
480
850
  end
481
851
 
482
- # Request would cause a service quota to be exceeded. The limit is 10
483
- # concurrent operations.
852
+ # The request would cause a service quota to be exceeded. The limit is
853
+ # 10 concurrent operations.
484
854
  #
485
855
  # @!attribute [rw] message
486
856
  # @return [String]
@@ -514,7 +884,7 @@ module Aws::ControlTower
514
884
  #
515
885
  class TagResourceOutput < Aws::EmptyStructure; end
516
886
 
517
- # Request was denied due to request throttling.
887
+ # The request was denied due to request throttling.
518
888
  #
519
889
  # @!attribute [rw] message
520
890
  # @return [String]
@@ -524,7 +894,7 @@ module Aws::ControlTower
524
894
  # @return [String]
525
895
  #
526
896
  # @!attribute [rw] retry_after_seconds
527
- # The number of seconds the caller should wait before retrying.
897
+ # The number of seconds to wait before retrying.
528
898
  # @return [Integer]
529
899
  #
530
900
  # @!attribute [rw] service_code
@@ -563,8 +933,79 @@ module Aws::ControlTower
563
933
  #
564
934
  class UntagResourceOutput < Aws::EmptyStructure; end
565
935
 
566
- # The input fails to satisfy the constraints specified by an AWS
567
- # service.
936
+ # @!attribute [rw] enabled_control_identifier
937
+ # The ARN of the enabled control that will be updated.
938
+ # @return [String]
939
+ #
940
+ # @!attribute [rw] parameters
941
+ # A key/value pair, where `Key` is of type `String` and `Value` is of
942
+ # type `Document`.
943
+ # @return [Array<Types::EnabledControlParameter>]
944
+ #
945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateEnabledControlInput AWS API Documentation
946
+ #
947
+ class UpdateEnabledControlInput < Struct.new(
948
+ :enabled_control_identifier,
949
+ :parameters)
950
+ SENSITIVE = []
951
+ include Aws::Structure
952
+ end
953
+
954
+ # @!attribute [rw] operation_identifier
955
+ # The operation identifier for this `UpdateEnabledControl` operation.
956
+ # @return [String]
957
+ #
958
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateEnabledControlOutput AWS API Documentation
959
+ #
960
+ class UpdateEnabledControlOutput < Struct.new(
961
+ :operation_identifier)
962
+ SENSITIVE = []
963
+ include Aws::Structure
964
+ end
965
+
966
+ # @!attribute [rw] landing_zone_identifier
967
+ # The unique identifier of the landing zone.
968
+ # @return [String]
969
+ #
970
+ # @!attribute [rw] manifest
971
+ # The `manifest.yaml` file is a text file that describes your Amazon
972
+ # Web Services resources. For examples, review [The manifest file][1].
973
+ #
974
+ #
975
+ #
976
+ # [1]: https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file
977
+ # @return [Hash,Array,String,Numeric,Boolean]
978
+ #
979
+ # @!attribute [rw] version
980
+ # The landing zone version, for example, 3.2.
981
+ # @return [String]
982
+ #
983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateLandingZoneInput AWS API Documentation
984
+ #
985
+ class UpdateLandingZoneInput < Struct.new(
986
+ :landing_zone_identifier,
987
+ :manifest,
988
+ :version)
989
+ SENSITIVE = []
990
+ include Aws::Structure
991
+ end
992
+
993
+ # @!attribute [rw] operation_identifier
994
+ # A unique identifier assigned to a `UpdateLandingZone` operation. You
995
+ # can use this identifier as an input of `GetLandingZoneOperation` to
996
+ # check the operation's status.
997
+ # @return [String]
998
+ #
999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateLandingZoneOutput AWS API Documentation
1000
+ #
1001
+ class UpdateLandingZoneOutput < Struct.new(
1002
+ :operation_identifier)
1003
+ SENSITIVE = []
1004
+ include Aws::Structure
1005
+ end
1006
+
1007
+ # The input does not satisfy the constraints specified by an Amazon Web
1008
+ # Services service.
568
1009
  #
569
1010
  # @!attribute [rw] message
570
1011
  # @return [String]
@@ -32,7 +32,7 @@ require_relative 'aws-sdk-controltower/customizations'
32
32
  # structure.
33
33
  #
34
34
  # control_tower = Aws::ControlTower::Client.new
35
- # resp = control_tower.disable_control(params)
35
+ # resp = control_tower.create_landing_zone(params)
36
36
  #
37
37
  # See {Client} for more information.
38
38
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-controltower/customizations'
52
52
  # @!group service
53
53
  module Aws::ControlTower
54
54
 
55
- GEM_VERSION = '1.12.0'
55
+ GEM_VERSION = '1.14.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-controltower
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2023-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core