aws-sdk-controltower 1.17.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-controltower/client.rb +452 -65
- data/lib/aws-sdk-controltower/client_api.rb +294 -0
- data/lib/aws-sdk-controltower/endpoints.rb +126 -0
- data/lib/aws-sdk-controltower/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-controltower/types.rb +530 -23
- data/lib/aws-sdk-controltower.rb +1 -1
- data/sig/client.rbs +119 -0
- data/sig/types.rbs +158 -0
- metadata +4 -4
@@ -23,6 +23,74 @@ module Aws::ControlTower
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
+
# An object of shape `BaselineOperation`, returning details about the
|
27
|
+
# specified `Baseline` operation ID.
|
28
|
+
#
|
29
|
+
# @!attribute [rw] end_time
|
30
|
+
# The end time of the operation (if applicable), in ISO 8601 format.
|
31
|
+
# @return [Time]
|
32
|
+
#
|
33
|
+
# @!attribute [rw] operation_identifier
|
34
|
+
# The identifier of the specified operation.
|
35
|
+
# @return [String]
|
36
|
+
#
|
37
|
+
# @!attribute [rw] operation_type
|
38
|
+
# An enumerated type (`enum`) with possible values of
|
39
|
+
# `ENABLE_BASELINE`, `DISABLE_BASELINE`, `UPDATE_ENABLED_BASELINE`, or
|
40
|
+
# `RESET_ENABLED_BASELINE`.
|
41
|
+
# @return [String]
|
42
|
+
#
|
43
|
+
# @!attribute [rw] start_time
|
44
|
+
# The start time of the operation, in ISO 8601 format.
|
45
|
+
# @return [Time]
|
46
|
+
#
|
47
|
+
# @!attribute [rw] status
|
48
|
+
# An enumerated type (`enum`) with possible values of `SUCCEEDED`,
|
49
|
+
# `FAILED`, or `IN_PROGRESS`.
|
50
|
+
# @return [String]
|
51
|
+
#
|
52
|
+
# @!attribute [rw] status_message
|
53
|
+
# A status message that gives more information about the operation's
|
54
|
+
# status, if applicable.
|
55
|
+
# @return [String]
|
56
|
+
#
|
57
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/BaselineOperation AWS API Documentation
|
58
|
+
#
|
59
|
+
class BaselineOperation < Struct.new(
|
60
|
+
:end_time,
|
61
|
+
:operation_identifier,
|
62
|
+
:operation_type,
|
63
|
+
:start_time,
|
64
|
+
:status,
|
65
|
+
:status_message)
|
66
|
+
SENSITIVE = []
|
67
|
+
include Aws::Structure
|
68
|
+
end
|
69
|
+
|
70
|
+
# Returns a summary of information about a `Baseline` object.
|
71
|
+
#
|
72
|
+
# @!attribute [rw] arn
|
73
|
+
# The full ARN of a Baseline.
|
74
|
+
# @return [String]
|
75
|
+
#
|
76
|
+
# @!attribute [rw] description
|
77
|
+
# A summary description of a Baseline.
|
78
|
+
# @return [String]
|
79
|
+
#
|
80
|
+
# @!attribute [rw] name
|
81
|
+
# The human-readable name of a Baseline.
|
82
|
+
# @return [String]
|
83
|
+
#
|
84
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/BaselineSummary AWS API Documentation
|
85
|
+
#
|
86
|
+
class BaselineSummary < Struct.new(
|
87
|
+
:arn,
|
88
|
+
:description,
|
89
|
+
:name)
|
90
|
+
SENSITIVE = []
|
91
|
+
include Aws::Structure
|
92
|
+
end
|
93
|
+
|
26
94
|
# Updating or deleting the resource can cause an inconsistent state.
|
27
95
|
#
|
28
96
|
# @!attribute [rw] message
|
@@ -72,13 +140,12 @@ module Aws::ControlTower
|
|
72
140
|
end
|
73
141
|
|
74
142
|
# @!attribute [rw] manifest
|
75
|
-
# The manifest
|
76
|
-
# Services resources. For examples, review [
|
77
|
-
# zone][1].
|
143
|
+
# The manifest.yaml file is a text file that describes your Amazon Web
|
144
|
+
# Services resources. For examples, review [The manifest file][1].
|
78
145
|
#
|
79
146
|
#
|
80
147
|
#
|
81
|
-
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/
|
148
|
+
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file
|
82
149
|
# @return [Hash,Array,String,Numeric,Boolean]
|
83
150
|
#
|
84
151
|
# @!attribute [rw] tags
|
@@ -144,11 +211,38 @@ module Aws::ControlTower
|
|
144
211
|
include Aws::Structure
|
145
212
|
end
|
146
213
|
|
214
|
+
# @!attribute [rw] enabled_baseline_identifier
|
215
|
+
# Identifier of the `EnabledBaseline` resource to be deactivated, in
|
216
|
+
# ARN format.
|
217
|
+
# @return [String]
|
218
|
+
#
|
219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/DisableBaselineInput AWS API Documentation
|
220
|
+
#
|
221
|
+
class DisableBaselineInput < Struct.new(
|
222
|
+
:enabled_baseline_identifier)
|
223
|
+
SENSITIVE = []
|
224
|
+
include Aws::Structure
|
225
|
+
end
|
226
|
+
|
227
|
+
# @!attribute [rw] operation_identifier
|
228
|
+
# The ID (in UUID format) of the asynchronous `DisableBaseline`
|
229
|
+
# operation. This `operationIdentifier` is used to track status
|
230
|
+
# through calls to the `GetBaselineOperation` API.
|
231
|
+
# @return [String]
|
232
|
+
#
|
233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/DisableBaselineOutput AWS API Documentation
|
234
|
+
#
|
235
|
+
class DisableBaselineOutput < Struct.new(
|
236
|
+
:operation_identifier)
|
237
|
+
SENSITIVE = []
|
238
|
+
include Aws::Structure
|
239
|
+
end
|
240
|
+
|
147
241
|
# @!attribute [rw] control_identifier
|
148
242
|
# The ARN of the control. Only **Strongly recommended** and
|
149
243
|
# **Elective** controls are permitted, with the exception of the
|
150
|
-
# **
|
151
|
-
#
|
244
|
+
# **Region deny** control. For information on how to find the
|
245
|
+
# `controlIdentifier`, see [the overview page][1].
|
152
246
|
#
|
153
247
|
#
|
154
248
|
#
|
@@ -223,11 +317,64 @@ module Aws::ControlTower
|
|
223
317
|
include Aws::Structure
|
224
318
|
end
|
225
319
|
|
320
|
+
# @!attribute [rw] baseline_identifier
|
321
|
+
# The ARN of the baseline to be enabled.
|
322
|
+
# @return [String]
|
323
|
+
#
|
324
|
+
# @!attribute [rw] baseline_version
|
325
|
+
# The specific version to be enabled of the specified baseline.
|
326
|
+
# @return [String]
|
327
|
+
#
|
328
|
+
# @!attribute [rw] parameters
|
329
|
+
# A list of `key-value` objects that specify enablement parameters,
|
330
|
+
# where `key` is a string and `value` is a document of any type.
|
331
|
+
# @return [Array<Types::EnabledBaselineParameter>]
|
332
|
+
#
|
333
|
+
# @!attribute [rw] tags
|
334
|
+
# Tags associated with input to `EnableBaseline`.
|
335
|
+
# @return [Hash<String,String>]
|
336
|
+
#
|
337
|
+
# @!attribute [rw] target_identifier
|
338
|
+
# The ARN of the target on which the baseline will be enabled. Only
|
339
|
+
# OUs are supported as targets.
|
340
|
+
# @return [String]
|
341
|
+
#
|
342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnableBaselineInput AWS API Documentation
|
343
|
+
#
|
344
|
+
class EnableBaselineInput < Struct.new(
|
345
|
+
:baseline_identifier,
|
346
|
+
:baseline_version,
|
347
|
+
:parameters,
|
348
|
+
:tags,
|
349
|
+
:target_identifier)
|
350
|
+
SENSITIVE = []
|
351
|
+
include Aws::Structure
|
352
|
+
end
|
353
|
+
|
354
|
+
# @!attribute [rw] arn
|
355
|
+
# The ARN of the `EnabledBaseline` resource.
|
356
|
+
# @return [String]
|
357
|
+
#
|
358
|
+
# @!attribute [rw] operation_identifier
|
359
|
+
# The ID (in UUID format) of the asynchronous `EnableBaseline`
|
360
|
+
# operation. This `operationIdentifier` is used to track status
|
361
|
+
# through calls to the `GetBaselineOperation` API.
|
362
|
+
# @return [String]
|
363
|
+
#
|
364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnableBaselineOutput AWS API Documentation
|
365
|
+
#
|
366
|
+
class EnableBaselineOutput < Struct.new(
|
367
|
+
:arn,
|
368
|
+
:operation_identifier)
|
369
|
+
SENSITIVE = []
|
370
|
+
include Aws::Structure
|
371
|
+
end
|
372
|
+
|
226
373
|
# @!attribute [rw] control_identifier
|
227
374
|
# The ARN of the control. Only **Strongly recommended** and
|
228
375
|
# **Elective** controls are permitted, with the exception of the
|
229
|
-
# **
|
230
|
-
#
|
376
|
+
# **Region deny** control. For information on how to find the
|
377
|
+
# `controlIdentifier`, see [the overview page][1].
|
231
378
|
#
|
232
379
|
#
|
233
380
|
#
|
@@ -235,7 +382,8 @@ module Aws::ControlTower
|
|
235
382
|
# @return [String]
|
236
383
|
#
|
237
384
|
# @!attribute [rw] parameters
|
238
|
-
#
|
385
|
+
# A list of input parameter values, which are specified to configure
|
386
|
+
# the control when you enable it.
|
239
387
|
# @return [Array<Types::EnabledControlParameter>]
|
240
388
|
#
|
241
389
|
# @!attribute [rw] tags
|
@@ -280,6 +428,143 @@ module Aws::ControlTower
|
|
280
428
|
include Aws::Structure
|
281
429
|
end
|
282
430
|
|
431
|
+
# Details of the `EnabledBaseline` resource.
|
432
|
+
#
|
433
|
+
# @!attribute [rw] arn
|
434
|
+
# The ARN of the `EnabledBaseline` resource.
|
435
|
+
# @return [String]
|
436
|
+
#
|
437
|
+
# @!attribute [rw] baseline_identifier
|
438
|
+
# The specific `Baseline` enabled as part of the `EnabledBaseline`
|
439
|
+
# resource.
|
440
|
+
# @return [String]
|
441
|
+
#
|
442
|
+
# @!attribute [rw] baseline_version
|
443
|
+
# The enabled version of the `Baseline`.
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
# @!attribute [rw] parameters
|
447
|
+
# Shows the parameters that are applied when enabling this `Baseline`.
|
448
|
+
# @return [Array<Types::EnabledBaselineParameterSummary>]
|
449
|
+
#
|
450
|
+
# @!attribute [rw] status_summary
|
451
|
+
# The deployment summary of the enabled control.
|
452
|
+
# @return [Types::EnablementStatusSummary]
|
453
|
+
#
|
454
|
+
# @!attribute [rw] target_identifier
|
455
|
+
# The target on which to enable the `Baseline`.
|
456
|
+
# @return [String]
|
457
|
+
#
|
458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineDetails AWS API Documentation
|
459
|
+
#
|
460
|
+
class EnabledBaselineDetails < Struct.new(
|
461
|
+
:arn,
|
462
|
+
:baseline_identifier,
|
463
|
+
:baseline_version,
|
464
|
+
:parameters,
|
465
|
+
:status_summary,
|
466
|
+
:target_identifier)
|
467
|
+
SENSITIVE = []
|
468
|
+
include Aws::Structure
|
469
|
+
end
|
470
|
+
|
471
|
+
# A filter applied on the `ListEnabledBaseline` operation. Allowed
|
472
|
+
# filters are `baselineIdentifiers` and `targetIdentifiers`. The filter
|
473
|
+
# can be applied for either, or both.
|
474
|
+
#
|
475
|
+
# @!attribute [rw] baseline_identifiers
|
476
|
+
# Identifiers for the `Baseline` objects returned as part of the
|
477
|
+
# filter operation.
|
478
|
+
# @return [Array<String>]
|
479
|
+
#
|
480
|
+
# @!attribute [rw] target_identifiers
|
481
|
+
# Identifiers for the targets of the `Baseline` filter operation.
|
482
|
+
# @return [Array<String>]
|
483
|
+
#
|
484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineFilter AWS API Documentation
|
485
|
+
#
|
486
|
+
class EnabledBaselineFilter < Struct.new(
|
487
|
+
:baseline_identifiers,
|
488
|
+
:target_identifiers)
|
489
|
+
SENSITIVE = []
|
490
|
+
include Aws::Structure
|
491
|
+
end
|
492
|
+
|
493
|
+
# A key-value parameter to an `EnabledBaseline` resource.
|
494
|
+
#
|
495
|
+
# @!attribute [rw] key
|
496
|
+
# A string denoting the parameter key.
|
497
|
+
# @return [String]
|
498
|
+
#
|
499
|
+
# @!attribute [rw] value
|
500
|
+
# A low-level `Document` object of any type (for example, a Java
|
501
|
+
# Object).
|
502
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
503
|
+
#
|
504
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineParameter AWS API Documentation
|
505
|
+
#
|
506
|
+
class EnabledBaselineParameter < Struct.new(
|
507
|
+
:key,
|
508
|
+
:value)
|
509
|
+
SENSITIVE = []
|
510
|
+
include Aws::Structure
|
511
|
+
end
|
512
|
+
|
513
|
+
# Summary of an applied parameter to an `EnabledBaseline` resource.
|
514
|
+
#
|
515
|
+
# @!attribute [rw] key
|
516
|
+
# A string denoting the parameter key.
|
517
|
+
# @return [String]
|
518
|
+
#
|
519
|
+
# @!attribute [rw] value
|
520
|
+
# A low-level document object of any type (for example, a Java
|
521
|
+
# Object).
|
522
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
523
|
+
#
|
524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineParameterSummary AWS API Documentation
|
525
|
+
#
|
526
|
+
class EnabledBaselineParameterSummary < Struct.new(
|
527
|
+
:key,
|
528
|
+
:value)
|
529
|
+
SENSITIVE = []
|
530
|
+
include Aws::Structure
|
531
|
+
end
|
532
|
+
|
533
|
+
# Returns a summary of information about an `EnabledBaseline` object.
|
534
|
+
#
|
535
|
+
# @!attribute [rw] arn
|
536
|
+
# The ARN of the `EnabledBaseline` resource
|
537
|
+
# @return [String]
|
538
|
+
#
|
539
|
+
# @!attribute [rw] baseline_identifier
|
540
|
+
# The specific baseline that is enabled as part of the
|
541
|
+
# `EnabledBaseline` resource.
|
542
|
+
# @return [String]
|
543
|
+
#
|
544
|
+
# @!attribute [rw] baseline_version
|
545
|
+
# The enabled version of the baseline.
|
546
|
+
# @return [String]
|
547
|
+
#
|
548
|
+
# @!attribute [rw] status_summary
|
549
|
+
# The deployment summary of the enabled control.
|
550
|
+
# @return [Types::EnablementStatusSummary]
|
551
|
+
#
|
552
|
+
# @!attribute [rw] target_identifier
|
553
|
+
# The target upon which the baseline is enabled.
|
554
|
+
# @return [String]
|
555
|
+
#
|
556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledBaselineSummary AWS API Documentation
|
557
|
+
#
|
558
|
+
class EnabledBaselineSummary < Struct.new(
|
559
|
+
:arn,
|
560
|
+
:baseline_identifier,
|
561
|
+
:baseline_version,
|
562
|
+
:status_summary,
|
563
|
+
:target_identifier)
|
564
|
+
SENSITIVE = []
|
565
|
+
include Aws::Structure
|
566
|
+
end
|
567
|
+
|
283
568
|
# Information about the enabled control.
|
284
569
|
#
|
285
570
|
# @!attribute [rw] arn
|
@@ -334,17 +619,15 @@ module Aws::ControlTower
|
|
334
619
|
include Aws::Structure
|
335
620
|
end
|
336
621
|
|
337
|
-
# A
|
338
|
-
#
|
339
|
-
# is of type `Document`.
|
622
|
+
# A key/value pair, where `Key` is of type `String` and `Value` is of
|
623
|
+
# type `Document`.
|
340
624
|
#
|
341
625
|
# @!attribute [rw] key
|
342
|
-
# The key of a key/value pair.
|
626
|
+
# The key of a key/value pair.
|
343
627
|
# @return [String]
|
344
628
|
#
|
345
629
|
# @!attribute [rw] value
|
346
|
-
# The value of a key/value pair.
|
347
|
-
# `number`, `object`, or `boolean`.
|
630
|
+
# The value of a key/value pair.
|
348
631
|
# @return [Hash,Array,String,Numeric,Boolean]
|
349
632
|
#
|
350
633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnabledControlParameter AWS API Documentation
|
@@ -438,6 +721,66 @@ module Aws::ControlTower
|
|
438
721
|
include Aws::Structure
|
439
722
|
end
|
440
723
|
|
724
|
+
# @!attribute [rw] baseline_identifier
|
725
|
+
# The ARN of the `Baseline` resource to be retrieved.
|
726
|
+
# @return [String]
|
727
|
+
#
|
728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetBaselineInput AWS API Documentation
|
729
|
+
#
|
730
|
+
class GetBaselineInput < Struct.new(
|
731
|
+
:baseline_identifier)
|
732
|
+
SENSITIVE = []
|
733
|
+
include Aws::Structure
|
734
|
+
end
|
735
|
+
|
736
|
+
# @!attribute [rw] operation_identifier
|
737
|
+
# The operation ID returned from mutating asynchronous APIs (Enable,
|
738
|
+
# Disable, Update, Reset).
|
739
|
+
# @return [String]
|
740
|
+
#
|
741
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetBaselineOperationInput AWS API Documentation
|
742
|
+
#
|
743
|
+
class GetBaselineOperationInput < Struct.new(
|
744
|
+
:operation_identifier)
|
745
|
+
SENSITIVE = []
|
746
|
+
include Aws::Structure
|
747
|
+
end
|
748
|
+
|
749
|
+
# @!attribute [rw] baseline_operation
|
750
|
+
# A `baselineOperation` object that shows information about the
|
751
|
+
# specified operation ID.
|
752
|
+
# @return [Types::BaselineOperation]
|
753
|
+
#
|
754
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetBaselineOperationOutput AWS API Documentation
|
755
|
+
#
|
756
|
+
class GetBaselineOperationOutput < Struct.new(
|
757
|
+
:baseline_operation)
|
758
|
+
SENSITIVE = []
|
759
|
+
include Aws::Structure
|
760
|
+
end
|
761
|
+
|
762
|
+
# @!attribute [rw] arn
|
763
|
+
# The baseline ARN.
|
764
|
+
# @return [String]
|
765
|
+
#
|
766
|
+
# @!attribute [rw] description
|
767
|
+
# A description of the baseline.
|
768
|
+
# @return [String]
|
769
|
+
#
|
770
|
+
# @!attribute [rw] name
|
771
|
+
# A user-friendly name for the baseline.
|
772
|
+
# @return [String]
|
773
|
+
#
|
774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetBaselineOutput AWS API Documentation
|
775
|
+
#
|
776
|
+
class GetBaselineOutput < Struct.new(
|
777
|
+
:arn,
|
778
|
+
:description,
|
779
|
+
:name)
|
780
|
+
SENSITIVE = []
|
781
|
+
include Aws::Structure
|
782
|
+
end
|
783
|
+
|
441
784
|
# @!attribute [rw] operation_identifier
|
442
785
|
# The ID of the asynchronous operation, which is used to track status.
|
443
786
|
# The operation is available for 90 days.
|
@@ -463,6 +806,31 @@ module Aws::ControlTower
|
|
463
806
|
include Aws::Structure
|
464
807
|
end
|
465
808
|
|
809
|
+
# @!attribute [rw] enabled_baseline_identifier
|
810
|
+
# Identifier of the `EnabledBaseline` resource to be retrieved, in ARN
|
811
|
+
# format.
|
812
|
+
# @return [String]
|
813
|
+
#
|
814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetEnabledBaselineInput AWS API Documentation
|
815
|
+
#
|
816
|
+
class GetEnabledBaselineInput < Struct.new(
|
817
|
+
:enabled_baseline_identifier)
|
818
|
+
SENSITIVE = []
|
819
|
+
include Aws::Structure
|
820
|
+
end
|
821
|
+
|
822
|
+
# @!attribute [rw] enabled_baseline_details
|
823
|
+
# Details of the `EnabledBaseline` resource.
|
824
|
+
# @return [Types::EnabledBaselineDetails]
|
825
|
+
#
|
826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetEnabledBaselineOutput AWS API Documentation
|
827
|
+
#
|
828
|
+
class GetEnabledBaselineOutput < Struct.new(
|
829
|
+
:enabled_baseline_details)
|
830
|
+
SENSITIVE = []
|
831
|
+
include Aws::Structure
|
832
|
+
end
|
833
|
+
|
466
834
|
# @!attribute [rw] enabled_control_identifier
|
467
835
|
# The `controlIdentifier` of the enabled control.
|
468
836
|
# @return [String]
|
@@ -563,12 +931,13 @@ module Aws::ControlTower
|
|
563
931
|
# @return [String]
|
564
932
|
#
|
565
933
|
# @!attribute [rw] manifest
|
566
|
-
# The landing zone manifest
|
567
|
-
# zone configurations.
|
934
|
+
# The landing zone `manifest.yaml` text file that specifies the
|
935
|
+
# landing zone configurations.
|
568
936
|
# @return [Hash,Array,String,Numeric,Boolean]
|
569
937
|
#
|
570
938
|
# @!attribute [rw] status
|
571
|
-
# The landing zone deployment status.
|
939
|
+
# The landing zone deployment status. One of `ACTIVE`, `PROCESSING`,
|
940
|
+
# `FAILED`.
|
572
941
|
# @return [String]
|
573
942
|
#
|
574
943
|
# @!attribute [rw] version
|
@@ -680,6 +1049,81 @@ module Aws::ControlTower
|
|
680
1049
|
include Aws::Structure
|
681
1050
|
end
|
682
1051
|
|
1052
|
+
# @!attribute [rw] max_results
|
1053
|
+
# The maximum number of results to be shown.
|
1054
|
+
# @return [Integer]
|
1055
|
+
#
|
1056
|
+
# @!attribute [rw] next_token
|
1057
|
+
# A pagination token.
|
1058
|
+
# @return [String]
|
1059
|
+
#
|
1060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListBaselinesInput AWS API Documentation
|
1061
|
+
#
|
1062
|
+
class ListBaselinesInput < Struct.new(
|
1063
|
+
:max_results,
|
1064
|
+
:next_token)
|
1065
|
+
SENSITIVE = []
|
1066
|
+
include Aws::Structure
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
# @!attribute [rw] baselines
|
1070
|
+
# A list of `Baseline` object details.
|
1071
|
+
# @return [Array<Types::BaselineSummary>]
|
1072
|
+
#
|
1073
|
+
# @!attribute [rw] next_token
|
1074
|
+
# A pagination token.
|
1075
|
+
# @return [String]
|
1076
|
+
#
|
1077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListBaselinesOutput AWS API Documentation
|
1078
|
+
#
|
1079
|
+
class ListBaselinesOutput < Struct.new(
|
1080
|
+
:baselines,
|
1081
|
+
:next_token)
|
1082
|
+
SENSITIVE = []
|
1083
|
+
include Aws::Structure
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
# @!attribute [rw] filter
|
1087
|
+
# A filter applied on the `ListEnabledBaseline` operation. Allowed
|
1088
|
+
# filters are `baselineIdentifiers` and `targetIdentifiers`. The
|
1089
|
+
# filter can be applied for either, or both.
|
1090
|
+
# @return [Types::EnabledBaselineFilter]
|
1091
|
+
#
|
1092
|
+
# @!attribute [rw] max_results
|
1093
|
+
# The maximum number of results to be shown.
|
1094
|
+
# @return [Integer]
|
1095
|
+
#
|
1096
|
+
# @!attribute [rw] next_token
|
1097
|
+
# A pagination token.
|
1098
|
+
# @return [String]
|
1099
|
+
#
|
1100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListEnabledBaselinesInput AWS API Documentation
|
1101
|
+
#
|
1102
|
+
class ListEnabledBaselinesInput < Struct.new(
|
1103
|
+
:filter,
|
1104
|
+
:max_results,
|
1105
|
+
:next_token)
|
1106
|
+
SENSITIVE = []
|
1107
|
+
include Aws::Structure
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
# @!attribute [rw] enabled_baselines
|
1111
|
+
# Retuens a list of summaries of `EnabledBaseline` resources.
|
1112
|
+
# @return [Array<Types::EnabledBaselineSummary>]
|
1113
|
+
#
|
1114
|
+
# @!attribute [rw] next_token
|
1115
|
+
# A pagination token.
|
1116
|
+
# @return [String]
|
1117
|
+
#
|
1118
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListEnabledBaselinesOutput AWS API Documentation
|
1119
|
+
#
|
1120
|
+
class ListEnabledBaselinesOutput < Struct.new(
|
1121
|
+
:enabled_baselines,
|
1122
|
+
:next_token)
|
1123
|
+
SENSITIVE = []
|
1124
|
+
include Aws::Structure
|
1125
|
+
end
|
1126
|
+
|
683
1127
|
# @!attribute [rw] max_results
|
684
1128
|
# How many results to return per API call.
|
685
1129
|
# @return [Integer]
|
@@ -811,6 +1255,33 @@ module Aws::ControlTower
|
|
811
1255
|
include Aws::Structure
|
812
1256
|
end
|
813
1257
|
|
1258
|
+
# @!attribute [rw] enabled_baseline_identifier
|
1259
|
+
# Specifies the ID of the `EnabledBaseline` resource to be re-enabled,
|
1260
|
+
# in ARN format.
|
1261
|
+
# @return [String]
|
1262
|
+
#
|
1263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ResetEnabledBaselineInput AWS API Documentation
|
1264
|
+
#
|
1265
|
+
class ResetEnabledBaselineInput < Struct.new(
|
1266
|
+
:enabled_baseline_identifier)
|
1267
|
+
SENSITIVE = []
|
1268
|
+
include Aws::Structure
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
# @!attribute [rw] operation_identifier
|
1272
|
+
# The ID (in UUID format) of the asynchronous `ResetEnabledBaseline`
|
1273
|
+
# operation. This `operationIdentifier` is used to track status
|
1274
|
+
# through calls to the `GetBaselineOperation` API.
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1277
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ResetEnabledBaselineOutput AWS API Documentation
|
1278
|
+
#
|
1279
|
+
class ResetEnabledBaselineOutput < Struct.new(
|
1280
|
+
:operation_identifier)
|
1281
|
+
SENSITIVE = []
|
1282
|
+
include Aws::Structure
|
1283
|
+
end
|
1284
|
+
|
814
1285
|
# @!attribute [rw] landing_zone_identifier
|
815
1286
|
# The unique identifier of the landing zone.
|
816
1287
|
# @return [String]
|
@@ -895,7 +1366,7 @@ module Aws::ControlTower
|
|
895
1366
|
# @return [String]
|
896
1367
|
#
|
897
1368
|
# @!attribute [rw] retry_after_seconds
|
898
|
-
# The number of seconds
|
1369
|
+
# The number of seconds the caller should wait before retrying.
|
899
1370
|
# @return [Integer]
|
900
1371
|
#
|
901
1372
|
# @!attribute [rw] service_code
|
@@ -934,6 +1405,43 @@ module Aws::ControlTower
|
|
934
1405
|
#
|
935
1406
|
class UntagResourceOutput < Aws::EmptyStructure; end
|
936
1407
|
|
1408
|
+
# @!attribute [rw] baseline_version
|
1409
|
+
# Specifies the new `Baseline` version, to which the `EnabledBaseline`
|
1410
|
+
# should be updated.
|
1411
|
+
# @return [String]
|
1412
|
+
#
|
1413
|
+
# @!attribute [rw] enabled_baseline_identifier
|
1414
|
+
# Specifies the `EnabledBaseline` resource to be updated.
|
1415
|
+
# @return [String]
|
1416
|
+
#
|
1417
|
+
# @!attribute [rw] parameters
|
1418
|
+
# Parameters to apply when making an update.
|
1419
|
+
# @return [Array<Types::EnabledBaselineParameter>]
|
1420
|
+
#
|
1421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateEnabledBaselineInput AWS API Documentation
|
1422
|
+
#
|
1423
|
+
class UpdateEnabledBaselineInput < Struct.new(
|
1424
|
+
:baseline_version,
|
1425
|
+
:enabled_baseline_identifier,
|
1426
|
+
:parameters)
|
1427
|
+
SENSITIVE = []
|
1428
|
+
include Aws::Structure
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# @!attribute [rw] operation_identifier
|
1432
|
+
# The ID (in UUID format) of the asynchronous `UpdateEnabledBaseline`
|
1433
|
+
# operation. This `operationIdentifier` is used to track status
|
1434
|
+
# through calls to the `GetBaselineOperation` API.
|
1435
|
+
# @return [String]
|
1436
|
+
#
|
1437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/UpdateEnabledBaselineOutput AWS API Documentation
|
1438
|
+
#
|
1439
|
+
class UpdateEnabledBaselineOutput < Struct.new(
|
1440
|
+
:operation_identifier)
|
1441
|
+
SENSITIVE = []
|
1442
|
+
include Aws::Structure
|
1443
|
+
end
|
1444
|
+
|
937
1445
|
# @!attribute [rw] enabled_control_identifier
|
938
1446
|
# The ARN of the enabled control that will be updated.
|
939
1447
|
# @return [String]
|
@@ -969,13 +1477,12 @@ module Aws::ControlTower
|
|
969
1477
|
# @return [String]
|
970
1478
|
#
|
971
1479
|
# @!attribute [rw] manifest
|
972
|
-
# The manifest
|
973
|
-
# Services resources. For examples, review [
|
974
|
-
# zone][1].
|
1480
|
+
# The `manifest.yaml` file is a text file that describes your Amazon
|
1481
|
+
# Web Services resources. For examples, review [The manifest file][1].
|
975
1482
|
#
|
976
1483
|
#
|
977
1484
|
#
|
978
|
-
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/
|
1485
|
+
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/the-manifest-file
|
979
1486
|
# @return [Hash,Array,String,Numeric,Boolean]
|
980
1487
|
#
|
981
1488
|
# @!attribute [rw] version
|