aws-sdk-controltower 1.51.0 → 1.52.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-controltower/client.rb +160 -122
- data/lib/aws-sdk-controltower/client_api.rb +90 -59
- data/lib/aws-sdk-controltower/errors.rb +5 -5
- data/lib/aws-sdk-controltower/types.rb +408 -281
- data/lib/aws-sdk-controltower/waiters.rb +15 -0
- data/lib/aws-sdk-controltower.rb +2 -1
- data/sig/client.rbs +47 -40
- data/sig/errors.rbs +1 -1
- data/sig/types.rbs +83 -56
- metadata +2 -1
|
@@ -480,6 +480,9 @@ module Aws::ControlTower
|
|
|
480
480
|
# operation that creates and configures a landing zone, based on the
|
|
481
481
|
# parameters specified in the manifest JSON file.
|
|
482
482
|
#
|
|
483
|
+
# @option params [required, String] :version
|
|
484
|
+
# The landing zone version, for example, 3.0.
|
|
485
|
+
#
|
|
483
486
|
# @option params [required, Hash,Array,String,Numeric,Boolean] :manifest
|
|
484
487
|
# The manifest JSON file is a text file that describes your Amazon Web
|
|
485
488
|
# Services resources. For examples, review [Launch your landing
|
|
@@ -494,12 +497,14 @@ module Aws::ControlTower
|
|
|
494
497
|
#
|
|
495
498
|
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
|
|
496
499
|
#
|
|
500
|
+
# @option params [Array<String>] :remediation_types
|
|
501
|
+
# Specifies the types of remediation actions to apply when creating the
|
|
502
|
+
# landing zone, such as automatic drift correction or compliance
|
|
503
|
+
# enforcement.
|
|
504
|
+
#
|
|
497
505
|
# @option params [Hash<String,String>] :tags
|
|
498
506
|
# Tags to be applied to the landing zone.
|
|
499
507
|
#
|
|
500
|
-
# @option params [required, String] :version
|
|
501
|
-
# The landing zone version, for example, 3.0.
|
|
502
|
-
#
|
|
503
508
|
# @return [Types::CreateLandingZoneOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
504
509
|
#
|
|
505
510
|
# * {Types::CreateLandingZoneOutput#arn #arn} => String
|
|
@@ -508,12 +513,13 @@ module Aws::ControlTower
|
|
|
508
513
|
# @example Request syntax with placeholder values
|
|
509
514
|
#
|
|
510
515
|
# resp = client.create_landing_zone({
|
|
516
|
+
# version: "LandingZoneVersion", # required
|
|
511
517
|
# manifest: { # required
|
|
512
518
|
# },
|
|
519
|
+
# remediation_types: ["INHERITANCE_DRIFT"], # accepts INHERITANCE_DRIFT
|
|
513
520
|
# tags: {
|
|
514
521
|
# "TagKey" => "TagValue",
|
|
515
522
|
# },
|
|
516
|
-
# version: "LandingZoneVersion", # required
|
|
517
523
|
# })
|
|
518
524
|
#
|
|
519
525
|
# @example Response structure
|
|
@@ -534,6 +540,11 @@ module Aws::ControlTower
|
|
|
534
540
|
# operation that deletes Amazon Web Services Control Tower resources
|
|
535
541
|
# deployed in accounts managed by Amazon Web Services Control Tower.
|
|
536
542
|
#
|
|
543
|
+
# Decommissioning a landing zone is a process with significant
|
|
544
|
+
# consequences, and it cannot be undone. We strongly recommend that you
|
|
545
|
+
# perform this decommissioning process only if you intend to stop using
|
|
546
|
+
# your landing zone.
|
|
547
|
+
#
|
|
537
548
|
# @option params [required, String] :landing_zone_identifier
|
|
538
549
|
# The unique identifier of the landing zone.
|
|
539
550
|
#
|
|
@@ -607,7 +618,7 @@ module Aws::ControlTower
|
|
|
607
618
|
#
|
|
608
619
|
# [1]: https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html
|
|
609
620
|
#
|
|
610
|
-
# @option params [
|
|
621
|
+
# @option params [String] :control_identifier
|
|
611
622
|
# The ARN of the control. Only **Strongly recommended** and **Elective**
|
|
612
623
|
# controls are permitted, with the exception of the **Region deny**
|
|
613
624
|
# control. For information on how to find the `controlIdentifier`, see
|
|
@@ -617,7 +628,7 @@ module Aws::ControlTower
|
|
|
617
628
|
#
|
|
618
629
|
# [1]: https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html
|
|
619
630
|
#
|
|
620
|
-
# @option params [
|
|
631
|
+
# @option params [String] :target_identifier
|
|
621
632
|
# The ARN of the organizational unit. For information on how to find the
|
|
622
633
|
# `targetIdentifier`, see [the overview page][1].
|
|
623
634
|
#
|
|
@@ -625,6 +636,10 @@ module Aws::ControlTower
|
|
|
625
636
|
#
|
|
626
637
|
# [1]: https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html
|
|
627
638
|
#
|
|
639
|
+
# @option params [String] :enabled_control_identifier
|
|
640
|
+
# The ARN of the enabled control to be disabled, which uniquely
|
|
641
|
+
# identifies the control instance on the target organizational unit.
|
|
642
|
+
#
|
|
628
643
|
# @return [Types::DisableControlOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
629
644
|
#
|
|
630
645
|
# * {Types::DisableControlOutput#operation_identifier #operation_identifier} => String
|
|
@@ -632,8 +647,9 @@ module Aws::ControlTower
|
|
|
632
647
|
# @example Request syntax with placeholder values
|
|
633
648
|
#
|
|
634
649
|
# resp = client.disable_control({
|
|
635
|
-
# control_identifier: "ControlIdentifier",
|
|
636
|
-
# target_identifier: "TargetIdentifier",
|
|
650
|
+
# control_identifier: "ControlIdentifier",
|
|
651
|
+
# target_identifier: "TargetIdentifier",
|
|
652
|
+
# enabled_control_identifier: "Arn",
|
|
637
653
|
# })
|
|
638
654
|
#
|
|
639
655
|
# @example Response structure
|
|
@@ -658,9 +674,6 @@ module Aws::ControlTower
|
|
|
658
674
|
#
|
|
659
675
|
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/baseline-api-examples.html
|
|
660
676
|
#
|
|
661
|
-
# @option params [required, String] :baseline_identifier
|
|
662
|
-
# The ARN of the baseline to be enabled.
|
|
663
|
-
#
|
|
664
677
|
# @option params [required, String] :baseline_version
|
|
665
678
|
# The specific version to be enabled of the specified baseline.
|
|
666
679
|
#
|
|
@@ -668,22 +681,24 @@ module Aws::ControlTower
|
|
|
668
681
|
# A list of `key-value` objects that specify enablement parameters,
|
|
669
682
|
# where `key` is a string and `value` is a document of any type.
|
|
670
683
|
#
|
|
671
|
-
# @option params [
|
|
672
|
-
#
|
|
684
|
+
# @option params [required, String] :baseline_identifier
|
|
685
|
+
# The ARN of the baseline to be enabled.
|
|
673
686
|
#
|
|
674
687
|
# @option params [required, String] :target_identifier
|
|
675
688
|
# The ARN of the target on which the baseline will be enabled. Only OUs
|
|
676
689
|
# are supported as targets.
|
|
677
690
|
#
|
|
691
|
+
# @option params [Hash<String,String>] :tags
|
|
692
|
+
# Tags associated with input to `EnableBaseline`.
|
|
693
|
+
#
|
|
678
694
|
# @return [Types::EnableBaselineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
679
695
|
#
|
|
680
|
-
# * {Types::EnableBaselineOutput#arn #arn} => String
|
|
681
696
|
# * {Types::EnableBaselineOutput#operation_identifier #operation_identifier} => String
|
|
697
|
+
# * {Types::EnableBaselineOutput#arn #arn} => String
|
|
682
698
|
#
|
|
683
699
|
# @example Request syntax with placeholder values
|
|
684
700
|
#
|
|
685
701
|
# resp = client.enable_baseline({
|
|
686
|
-
# baseline_identifier: "Arn", # required
|
|
687
702
|
# baseline_version: "BaselineVersion", # required
|
|
688
703
|
# parameters: [
|
|
689
704
|
# {
|
|
@@ -692,16 +707,17 @@ module Aws::ControlTower
|
|
|
692
707
|
# },
|
|
693
708
|
# },
|
|
694
709
|
# ],
|
|
710
|
+
# baseline_identifier: "Arn", # required
|
|
711
|
+
# target_identifier: "Arn", # required
|
|
695
712
|
# tags: {
|
|
696
713
|
# "TagKey" => "TagValue",
|
|
697
714
|
# },
|
|
698
|
-
# target_identifier: "Arn", # required
|
|
699
715
|
# })
|
|
700
716
|
#
|
|
701
717
|
# @example Response structure
|
|
702
718
|
#
|
|
703
|
-
# resp.arn #=> String
|
|
704
719
|
# resp.operation_identifier #=> String
|
|
720
|
+
# resp.arn #=> String
|
|
705
721
|
#
|
|
706
722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnableBaseline AWS API Documentation
|
|
707
723
|
#
|
|
@@ -732,13 +748,6 @@ module Aws::ControlTower
|
|
|
732
748
|
#
|
|
733
749
|
# [1]: https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html
|
|
734
750
|
#
|
|
735
|
-
# @option params [Array<Types::EnabledControlParameter>] :parameters
|
|
736
|
-
# A list of input parameter values, which are specified to configure the
|
|
737
|
-
# control when you enable it.
|
|
738
|
-
#
|
|
739
|
-
# @option params [Hash<String,String>] :tags
|
|
740
|
-
# Tags to be applied to the `EnabledControl` resource.
|
|
741
|
-
#
|
|
742
751
|
# @option params [required, String] :target_identifier
|
|
743
752
|
# The ARN of the organizational unit. For information on how to find the
|
|
744
753
|
# `targetIdentifier`, see [the overview page][1].
|
|
@@ -747,15 +756,26 @@ module Aws::ControlTower
|
|
|
747
756
|
#
|
|
748
757
|
# [1]: https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html
|
|
749
758
|
#
|
|
759
|
+
# @option params [Hash<String,String>] :tags
|
|
760
|
+
# Tags to be applied to the `EnabledControl` resource.
|
|
761
|
+
#
|
|
762
|
+
# @option params [Array<Types::EnabledControlParameter>] :parameters
|
|
763
|
+
# A list of input parameter values, which are specified to configure the
|
|
764
|
+
# control when you enable it.
|
|
765
|
+
#
|
|
750
766
|
# @return [Types::EnableControlOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
751
767
|
#
|
|
752
|
-
# * {Types::EnableControlOutput#arn #arn} => String
|
|
753
768
|
# * {Types::EnableControlOutput#operation_identifier #operation_identifier} => String
|
|
769
|
+
# * {Types::EnableControlOutput#arn #arn} => String
|
|
754
770
|
#
|
|
755
771
|
# @example Request syntax with placeholder values
|
|
756
772
|
#
|
|
757
773
|
# resp = client.enable_control({
|
|
758
774
|
# control_identifier: "ControlIdentifier", # required
|
|
775
|
+
# target_identifier: "TargetIdentifier", # required
|
|
776
|
+
# tags: {
|
|
777
|
+
# "TagKey" => "TagValue",
|
|
778
|
+
# },
|
|
759
779
|
# parameters: [
|
|
760
780
|
# {
|
|
761
781
|
# key: "String", # required
|
|
@@ -763,16 +783,12 @@ module Aws::ControlTower
|
|
|
763
783
|
# },
|
|
764
784
|
# },
|
|
765
785
|
# ],
|
|
766
|
-
# tags: {
|
|
767
|
-
# "TagKey" => "TagValue",
|
|
768
|
-
# },
|
|
769
|
-
# target_identifier: "TargetIdentifier", # required
|
|
770
786
|
# })
|
|
771
787
|
#
|
|
772
788
|
# @example Response structure
|
|
773
789
|
#
|
|
774
|
-
# resp.arn #=> String
|
|
775
790
|
# resp.operation_identifier #=> String
|
|
791
|
+
# resp.arn #=> String
|
|
776
792
|
#
|
|
777
793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/EnableControl AWS API Documentation
|
|
778
794
|
#
|
|
@@ -797,8 +813,8 @@ module Aws::ControlTower
|
|
|
797
813
|
# @return [Types::GetBaselineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
798
814
|
#
|
|
799
815
|
# * {Types::GetBaselineOutput#arn #arn} => String
|
|
800
|
-
# * {Types::GetBaselineOutput#description #description} => String
|
|
801
816
|
# * {Types::GetBaselineOutput#name #name} => String
|
|
817
|
+
# * {Types::GetBaselineOutput#description #description} => String
|
|
802
818
|
#
|
|
803
819
|
# @example Request syntax with placeholder values
|
|
804
820
|
#
|
|
@@ -809,8 +825,8 @@ module Aws::ControlTower
|
|
|
809
825
|
# @example Response structure
|
|
810
826
|
#
|
|
811
827
|
# resp.arn #=> String
|
|
812
|
-
# resp.description #=> String
|
|
813
828
|
# resp.name #=> String
|
|
829
|
+
# resp.description #=> String
|
|
814
830
|
#
|
|
815
831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetBaseline AWS API Documentation
|
|
816
832
|
#
|
|
@@ -847,11 +863,11 @@ module Aws::ControlTower
|
|
|
847
863
|
#
|
|
848
864
|
# @example Response structure
|
|
849
865
|
#
|
|
850
|
-
# resp.baseline_operation.end_time #=> Time
|
|
851
866
|
# resp.baseline_operation.operation_identifier #=> String
|
|
852
867
|
# resp.baseline_operation.operation_type #=> String, one of "ENABLE_BASELINE", "DISABLE_BASELINE", "UPDATE_ENABLED_BASELINE", "RESET_ENABLED_BASELINE"
|
|
853
|
-
# resp.baseline_operation.start_time #=> Time
|
|
854
868
|
# resp.baseline_operation.status #=> String, one of "SUCCEEDED", "FAILED", "IN_PROGRESS"
|
|
869
|
+
# resp.baseline_operation.start_time #=> Time
|
|
870
|
+
# resp.baseline_operation.end_time #=> Time
|
|
855
871
|
# resp.baseline_operation.status_message #=> String
|
|
856
872
|
#
|
|
857
873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetBaselineOperation AWS API Documentation
|
|
@@ -888,15 +904,15 @@ module Aws::ControlTower
|
|
|
888
904
|
#
|
|
889
905
|
# @example Response structure
|
|
890
906
|
#
|
|
891
|
-
# resp.control_operation.control_identifier #=> String
|
|
892
|
-
# resp.control_operation.enabled_control_identifier #=> String
|
|
893
|
-
# resp.control_operation.end_time #=> Time
|
|
894
|
-
# resp.control_operation.operation_identifier #=> String
|
|
895
907
|
# resp.control_operation.operation_type #=> String, one of "ENABLE_CONTROL", "DISABLE_CONTROL", "UPDATE_ENABLED_CONTROL", "RESET_ENABLED_CONTROL"
|
|
896
908
|
# resp.control_operation.start_time #=> Time
|
|
909
|
+
# resp.control_operation.end_time #=> Time
|
|
897
910
|
# resp.control_operation.status #=> String, one of "SUCCEEDED", "FAILED", "IN_PROGRESS"
|
|
898
911
|
# resp.control_operation.status_message #=> String
|
|
912
|
+
# resp.control_operation.operation_identifier #=> String
|
|
913
|
+
# resp.control_operation.control_identifier #=> String
|
|
899
914
|
# resp.control_operation.target_identifier #=> String
|
|
915
|
+
# resp.control_operation.enabled_control_identifier #=> String
|
|
900
916
|
#
|
|
901
917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetControlOperation AWS API Documentation
|
|
902
918
|
#
|
|
@@ -930,12 +946,12 @@ module Aws::ControlTower
|
|
|
930
946
|
# resp.enabled_baseline_details.baseline_identifier #=> String
|
|
931
947
|
# resp.enabled_baseline_details.baseline_version #=> String
|
|
932
948
|
# resp.enabled_baseline_details.drift_status_summary.types.inheritance.status #=> String, one of "IN_SYNC", "DRIFTED"
|
|
933
|
-
# resp.enabled_baseline_details.
|
|
934
|
-
# resp.enabled_baseline_details.parameters[0].key #=> String
|
|
949
|
+
# resp.enabled_baseline_details.target_identifier #=> String
|
|
935
950
|
# resp.enabled_baseline_details.parent_identifier #=> String
|
|
936
|
-
# resp.enabled_baseline_details.status_summary.last_operation_identifier #=> String
|
|
937
951
|
# resp.enabled_baseline_details.status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
|
|
938
|
-
# resp.enabled_baseline_details.
|
|
952
|
+
# resp.enabled_baseline_details.status_summary.last_operation_identifier #=> String
|
|
953
|
+
# resp.enabled_baseline_details.parameters #=> Array
|
|
954
|
+
# resp.enabled_baseline_details.parameters[0].key #=> String
|
|
939
955
|
#
|
|
940
956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetEnabledBaseline AWS API Documentation
|
|
941
957
|
#
|
|
@@ -970,14 +986,17 @@ module Aws::ControlTower
|
|
|
970
986
|
#
|
|
971
987
|
# resp.enabled_control_details.arn #=> String
|
|
972
988
|
# resp.enabled_control_details.control_identifier #=> String
|
|
973
|
-
# resp.enabled_control_details.drift_status_summary.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
974
|
-
# resp.enabled_control_details.parameters #=> Array
|
|
975
|
-
# resp.enabled_control_details.parameters[0].key #=> String
|
|
976
|
-
# resp.enabled_control_details.status_summary.last_operation_identifier #=> String
|
|
977
|
-
# resp.enabled_control_details.status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
|
|
978
989
|
# resp.enabled_control_details.target_identifier #=> String
|
|
990
|
+
# resp.enabled_control_details.status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
|
|
991
|
+
# resp.enabled_control_details.status_summary.last_operation_identifier #=> String
|
|
992
|
+
# resp.enabled_control_details.drift_status_summary.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
993
|
+
# resp.enabled_control_details.drift_status_summary.types.inheritance.status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
994
|
+
# resp.enabled_control_details.drift_status_summary.types.resource.status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
995
|
+
# resp.enabled_control_details.parent_identifier #=> String
|
|
979
996
|
# resp.enabled_control_details.target_regions #=> Array
|
|
980
997
|
# resp.enabled_control_details.target_regions[0].name #=> String
|
|
998
|
+
# resp.enabled_control_details.parameters #=> Array
|
|
999
|
+
# resp.enabled_control_details.parameters[0].key #=> String
|
|
981
1000
|
#
|
|
982
1001
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetEnabledControl AWS API Documentation
|
|
983
1002
|
#
|
|
@@ -1006,11 +1025,13 @@ module Aws::ControlTower
|
|
|
1006
1025
|
#
|
|
1007
1026
|
# @example Response structure
|
|
1008
1027
|
#
|
|
1028
|
+
# resp.landing_zone.version #=> String
|
|
1029
|
+
# resp.landing_zone.remediation_types #=> Array
|
|
1030
|
+
# resp.landing_zone.remediation_types[0] #=> String, one of "INHERITANCE_DRIFT"
|
|
1009
1031
|
# resp.landing_zone.arn #=> String
|
|
1010
|
-
# resp.landing_zone.drift_status.status #=> String, one of "DRIFTED", "IN_SYNC"
|
|
1011
|
-
# resp.landing_zone.latest_available_version #=> String
|
|
1012
1032
|
# resp.landing_zone.status #=> String, one of "ACTIVE", "PROCESSING", "FAILED"
|
|
1013
|
-
# resp.landing_zone.
|
|
1033
|
+
# resp.landing_zone.latest_available_version #=> String
|
|
1034
|
+
# resp.landing_zone.drift_status.status #=> String, one of "DRIFTED", "IN_SYNC"
|
|
1014
1035
|
#
|
|
1015
1036
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetLandingZone AWS API Documentation
|
|
1016
1037
|
#
|
|
@@ -1039,11 +1060,11 @@ module Aws::ControlTower
|
|
|
1039
1060
|
#
|
|
1040
1061
|
# @example Response structure
|
|
1041
1062
|
#
|
|
1042
|
-
# resp.operation_details.end_time #=> Time
|
|
1043
|
-
# resp.operation_details.operation_identifier #=> String
|
|
1044
1063
|
# resp.operation_details.operation_type #=> String, one of "DELETE", "CREATE", "UPDATE", "RESET"
|
|
1045
|
-
# resp.operation_details.
|
|
1064
|
+
# resp.operation_details.operation_identifier #=> String
|
|
1046
1065
|
# resp.operation_details.status #=> String, one of "SUCCEEDED", "FAILED", "IN_PROGRESS"
|
|
1066
|
+
# resp.operation_details.start_time #=> Time
|
|
1067
|
+
# resp.operation_details.end_time #=> Time
|
|
1047
1068
|
# resp.operation_details.status_message #=> String
|
|
1048
1069
|
#
|
|
1049
1070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/GetLandingZoneOperation AWS API Documentation
|
|
@@ -1062,12 +1083,12 @@ module Aws::ControlTower
|
|
|
1062
1083
|
#
|
|
1063
1084
|
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/baseline-api-examples.html
|
|
1064
1085
|
#
|
|
1065
|
-
# @option params [Integer] :max_results
|
|
1066
|
-
# The maximum number of results to be shown.
|
|
1067
|
-
#
|
|
1068
1086
|
# @option params [String] :next_token
|
|
1069
1087
|
# A pagination token.
|
|
1070
1088
|
#
|
|
1089
|
+
# @option params [Integer] :max_results
|
|
1090
|
+
# The maximum number of results to be shown.
|
|
1091
|
+
#
|
|
1071
1092
|
# @return [Types::ListBaselinesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1072
1093
|
#
|
|
1073
1094
|
# * {Types::ListBaselinesOutput#baselines #baselines} => Array<Types::BaselineSummary>
|
|
@@ -1078,16 +1099,16 @@ module Aws::ControlTower
|
|
|
1078
1099
|
# @example Request syntax with placeholder values
|
|
1079
1100
|
#
|
|
1080
1101
|
# resp = client.list_baselines({
|
|
1081
|
-
# max_results: 1,
|
|
1082
1102
|
# next_token: "String",
|
|
1103
|
+
# max_results: 1,
|
|
1083
1104
|
# })
|
|
1084
1105
|
#
|
|
1085
1106
|
# @example Response structure
|
|
1086
1107
|
#
|
|
1087
1108
|
# resp.baselines #=> Array
|
|
1088
1109
|
# resp.baselines[0].arn #=> String
|
|
1089
|
-
# resp.baselines[0].description #=> String
|
|
1090
1110
|
# resp.baselines[0].name #=> String
|
|
1111
|
+
# resp.baselines[0].description #=> String
|
|
1091
1112
|
# resp.next_token #=> String
|
|
1092
1113
|
#
|
|
1093
1114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListBaselines AWS API Documentation
|
|
@@ -1110,12 +1131,12 @@ module Aws::ControlTower
|
|
|
1110
1131
|
# An input filter for the `ListControlOperations` API that lets you
|
|
1111
1132
|
# select the types of control operations to view.
|
|
1112
1133
|
#
|
|
1113
|
-
# @option params [Integer] :max_results
|
|
1114
|
-
# The maximum number of results to be shown.
|
|
1115
|
-
#
|
|
1116
1134
|
# @option params [String] :next_token
|
|
1117
1135
|
# A pagination token.
|
|
1118
1136
|
#
|
|
1137
|
+
# @option params [Integer] :max_results
|
|
1138
|
+
# The maximum number of results to be shown.
|
|
1139
|
+
#
|
|
1119
1140
|
# @return [Types::ListControlOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1120
1141
|
#
|
|
1121
1142
|
# * {Types::ListControlOperationsOutput#control_operations #control_operations} => Array<Types::ControlOperationSummary>
|
|
@@ -1128,27 +1149,27 @@ module Aws::ControlTower
|
|
|
1128
1149
|
# resp = client.list_control_operations({
|
|
1129
1150
|
# filter: {
|
|
1130
1151
|
# control_identifiers: ["ControlIdentifier"],
|
|
1131
|
-
#
|
|
1152
|
+
# target_identifiers: ["TargetIdentifier"],
|
|
1132
1153
|
# enabled_control_identifiers: ["Arn"],
|
|
1133
1154
|
# statuses: ["SUCCEEDED"], # accepts SUCCEEDED, FAILED, IN_PROGRESS
|
|
1134
|
-
#
|
|
1155
|
+
# control_operation_types: ["ENABLE_CONTROL"], # accepts ENABLE_CONTROL, DISABLE_CONTROL, UPDATE_ENABLED_CONTROL, RESET_ENABLED_CONTROL
|
|
1135
1156
|
# },
|
|
1136
|
-
# max_results: 1,
|
|
1137
1157
|
# next_token: "ListControlOperationsNextToken",
|
|
1158
|
+
# max_results: 1,
|
|
1138
1159
|
# })
|
|
1139
1160
|
#
|
|
1140
1161
|
# @example Response structure
|
|
1141
1162
|
#
|
|
1142
1163
|
# resp.control_operations #=> Array
|
|
1143
|
-
# resp.control_operations[0].control_identifier #=> String
|
|
1144
|
-
# resp.control_operations[0].enabled_control_identifier #=> String
|
|
1145
|
-
# resp.control_operations[0].end_time #=> Time
|
|
1146
|
-
# resp.control_operations[0].operation_identifier #=> String
|
|
1147
1164
|
# resp.control_operations[0].operation_type #=> String, one of "ENABLE_CONTROL", "DISABLE_CONTROL", "UPDATE_ENABLED_CONTROL", "RESET_ENABLED_CONTROL"
|
|
1148
1165
|
# resp.control_operations[0].start_time #=> Time
|
|
1166
|
+
# resp.control_operations[0].end_time #=> Time
|
|
1149
1167
|
# resp.control_operations[0].status #=> String, one of "SUCCEEDED", "FAILED", "IN_PROGRESS"
|
|
1150
1168
|
# resp.control_operations[0].status_message #=> String
|
|
1169
|
+
# resp.control_operations[0].operation_identifier #=> String
|
|
1170
|
+
# resp.control_operations[0].control_identifier #=> String
|
|
1151
1171
|
# resp.control_operations[0].target_identifier #=> String
|
|
1172
|
+
# resp.control_operations[0].enabled_control_identifier #=> String
|
|
1152
1173
|
# resp.next_token #=> String
|
|
1153
1174
|
#
|
|
1154
1175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListControlOperations AWS API Documentation
|
|
@@ -1174,15 +1195,15 @@ module Aws::ControlTower
|
|
|
1174
1195
|
# filters are `baselineIdentifiers` and `targetIdentifiers`. The filter
|
|
1175
1196
|
# can be applied for either, or both.
|
|
1176
1197
|
#
|
|
1177
|
-
# @option params [
|
|
1178
|
-
# A
|
|
1179
|
-
# responses. The default value is false.
|
|
1198
|
+
# @option params [String] :next_token
|
|
1199
|
+
# A pagination token.
|
|
1180
1200
|
#
|
|
1181
1201
|
# @option params [Integer] :max_results
|
|
1182
1202
|
# The maximum number of results to be shown.
|
|
1183
1203
|
#
|
|
1184
|
-
# @option params [
|
|
1185
|
-
# A
|
|
1204
|
+
# @option params [Boolean] :include_children
|
|
1205
|
+
# A value that can be set to include the child enabled baselines in
|
|
1206
|
+
# responses. The default value is false.
|
|
1186
1207
|
#
|
|
1187
1208
|
# @return [Types::ListEnabledBaselinesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1188
1209
|
#
|
|
@@ -1195,15 +1216,15 @@ module Aws::ControlTower
|
|
|
1195
1216
|
#
|
|
1196
1217
|
# resp = client.list_enabled_baselines({
|
|
1197
1218
|
# filter: {
|
|
1219
|
+
# target_identifiers: ["Arn"],
|
|
1198
1220
|
# baseline_identifiers: ["Arn"],
|
|
1199
|
-
# inheritance_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, DRIFTED
|
|
1200
1221
|
# parent_identifiers: ["Arn"],
|
|
1201
1222
|
# statuses: ["SUCCEEDED"], # accepts SUCCEEDED, FAILED, UNDER_CHANGE
|
|
1202
|
-
#
|
|
1223
|
+
# inheritance_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, DRIFTED
|
|
1203
1224
|
# },
|
|
1204
|
-
# include_children: false,
|
|
1205
|
-
# max_results: 1,
|
|
1206
1225
|
# next_token: "ListEnabledBaselinesNextToken",
|
|
1226
|
+
# max_results: 1,
|
|
1227
|
+
# include_children: false,
|
|
1207
1228
|
# })
|
|
1208
1229
|
#
|
|
1209
1230
|
# @example Response structure
|
|
@@ -1213,10 +1234,10 @@ module Aws::ControlTower
|
|
|
1213
1234
|
# resp.enabled_baselines[0].baseline_identifier #=> String
|
|
1214
1235
|
# resp.enabled_baselines[0].baseline_version #=> String
|
|
1215
1236
|
# resp.enabled_baselines[0].drift_status_summary.types.inheritance.status #=> String, one of "IN_SYNC", "DRIFTED"
|
|
1237
|
+
# resp.enabled_baselines[0].target_identifier #=> String
|
|
1216
1238
|
# resp.enabled_baselines[0].parent_identifier #=> String
|
|
1217
|
-
# resp.enabled_baselines[0].status_summary.last_operation_identifier #=> String
|
|
1218
1239
|
# resp.enabled_baselines[0].status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
|
|
1219
|
-
# resp.enabled_baselines[0].
|
|
1240
|
+
# resp.enabled_baselines[0].status_summary.last_operation_identifier #=> String
|
|
1220
1241
|
# resp.next_token #=> String
|
|
1221
1242
|
#
|
|
1222
1243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListEnabledBaselines AWS API Documentation
|
|
@@ -1236,24 +1257,28 @@ module Aws::ControlTower
|
|
|
1236
1257
|
#
|
|
1237
1258
|
# [1]: https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html
|
|
1238
1259
|
#
|
|
1239
|
-
# @option params [
|
|
1240
|
-
#
|
|
1241
|
-
#
|
|
1260
|
+
# @option params [String] :target_identifier
|
|
1261
|
+
# The ARN of the organizational unit. For information on how to find the
|
|
1262
|
+
# `targetIdentifier`, see [the overview page][1].
|
|
1242
1263
|
#
|
|
1243
|
-
#
|
|
1244
|
-
#
|
|
1264
|
+
#
|
|
1265
|
+
#
|
|
1266
|
+
# [1]: https://docs.aws.amazon.com/controltower/latest/APIReference/Welcome.html
|
|
1245
1267
|
#
|
|
1246
1268
|
# @option params [String] :next_token
|
|
1247
1269
|
# The token to continue the list from a previous API call with the same
|
|
1248
1270
|
# parameters.
|
|
1249
1271
|
#
|
|
1250
|
-
# @option params [
|
|
1251
|
-
#
|
|
1252
|
-
# `targetIdentifier`, see [the overview page][1].
|
|
1253
|
-
#
|
|
1272
|
+
# @option params [Integer] :max_results
|
|
1273
|
+
# How many results to return per API call.
|
|
1254
1274
|
#
|
|
1275
|
+
# @option params [Types::EnabledControlFilter] :filter
|
|
1276
|
+
# An input filter for the `ListEnabledControls` API that lets you select
|
|
1277
|
+
# the types of control operations to view.
|
|
1255
1278
|
#
|
|
1256
|
-
#
|
|
1279
|
+
# @option params [Boolean] :include_children
|
|
1280
|
+
# A boolean value that determines whether to include enabled controls
|
|
1281
|
+
# from child organizational units in the response.
|
|
1257
1282
|
#
|
|
1258
1283
|
# @return [Types::ListEnabledControlsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1259
1284
|
#
|
|
@@ -1265,14 +1290,18 @@ module Aws::ControlTower
|
|
|
1265
1290
|
# @example Request syntax with placeholder values
|
|
1266
1291
|
#
|
|
1267
1292
|
# resp = client.list_enabled_controls({
|
|
1293
|
+
# target_identifier: "TargetIdentifier",
|
|
1294
|
+
# next_token: "String",
|
|
1295
|
+
# max_results: 1,
|
|
1268
1296
|
# filter: {
|
|
1269
1297
|
# control_identifiers: ["ControlIdentifier"],
|
|
1270
|
-
# drift_statuses: ["DRIFTED"], # accepts DRIFTED, IN_SYNC, NOT_CHECKING, UNKNOWN
|
|
1271
1298
|
# statuses: ["SUCCEEDED"], # accepts SUCCEEDED, FAILED, UNDER_CHANGE
|
|
1299
|
+
# drift_statuses: ["DRIFTED"], # accepts DRIFTED, IN_SYNC, NOT_CHECKING, UNKNOWN
|
|
1300
|
+
# parent_identifiers: ["ParentIdentifier"],
|
|
1301
|
+
# inheritance_drift_statuses: ["DRIFTED"], # accepts DRIFTED, IN_SYNC, NOT_CHECKING, UNKNOWN
|
|
1302
|
+
# resource_drift_statuses: ["DRIFTED"], # accepts DRIFTED, IN_SYNC, NOT_CHECKING, UNKNOWN
|
|
1272
1303
|
# },
|
|
1273
|
-
#
|
|
1274
|
-
# next_token: "String",
|
|
1275
|
-
# target_identifier: "TargetIdentifier",
|
|
1304
|
+
# include_children: false,
|
|
1276
1305
|
# })
|
|
1277
1306
|
#
|
|
1278
1307
|
# @example Response structure
|
|
@@ -1280,10 +1309,13 @@ module Aws::ControlTower
|
|
|
1280
1309
|
# resp.enabled_controls #=> Array
|
|
1281
1310
|
# resp.enabled_controls[0].arn #=> String
|
|
1282
1311
|
# resp.enabled_controls[0].control_identifier #=> String
|
|
1283
|
-
# resp.enabled_controls[0].drift_status_summary.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
1284
|
-
# resp.enabled_controls[0].status_summary.last_operation_identifier #=> String
|
|
1285
|
-
# resp.enabled_controls[0].status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
|
|
1286
1312
|
# resp.enabled_controls[0].target_identifier #=> String
|
|
1313
|
+
# resp.enabled_controls[0].status_summary.status #=> String, one of "SUCCEEDED", "FAILED", "UNDER_CHANGE"
|
|
1314
|
+
# resp.enabled_controls[0].status_summary.last_operation_identifier #=> String
|
|
1315
|
+
# resp.enabled_controls[0].drift_status_summary.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
1316
|
+
# resp.enabled_controls[0].drift_status_summary.types.inheritance.status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
1317
|
+
# resp.enabled_controls[0].drift_status_summary.types.resource.status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKING", "UNKNOWN"
|
|
1318
|
+
# resp.enabled_controls[0].parent_identifier #=> String
|
|
1287
1319
|
# resp.next_token #=> String
|
|
1288
1320
|
#
|
|
1289
1321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListEnabledControls AWS API Documentation
|
|
@@ -1302,13 +1334,13 @@ module Aws::ControlTower
|
|
|
1302
1334
|
# An input filter for the `ListLandingZoneOperations` API that lets you
|
|
1303
1335
|
# select the types of landing zone operations to view.
|
|
1304
1336
|
#
|
|
1305
|
-
# @option params [Integer] :max_results
|
|
1306
|
-
# How many results to return per API call.
|
|
1307
|
-
#
|
|
1308
1337
|
# @option params [String] :next_token
|
|
1309
1338
|
# The token to continue the list from a previous API call with the same
|
|
1310
1339
|
# parameters.
|
|
1311
1340
|
#
|
|
1341
|
+
# @option params [Integer] :max_results
|
|
1342
|
+
# How many results to return per API call.
|
|
1343
|
+
#
|
|
1312
1344
|
# @return [Types::ListLandingZoneOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1313
1345
|
#
|
|
1314
1346
|
# * {Types::ListLandingZoneOperationsOutput#landing_zone_operations #landing_zone_operations} => Array<Types::LandingZoneOperationSummary>
|
|
@@ -1320,18 +1352,18 @@ module Aws::ControlTower
|
|
|
1320
1352
|
#
|
|
1321
1353
|
# resp = client.list_landing_zone_operations({
|
|
1322
1354
|
# filter: {
|
|
1323
|
-
# statuses: ["SUCCEEDED"], # accepts SUCCEEDED, FAILED, IN_PROGRESS
|
|
1324
1355
|
# types: ["DELETE"], # accepts DELETE, CREATE, UPDATE, RESET
|
|
1356
|
+
# statuses: ["SUCCEEDED"], # accepts SUCCEEDED, FAILED, IN_PROGRESS
|
|
1325
1357
|
# },
|
|
1326
|
-
# max_results: 1,
|
|
1327
1358
|
# next_token: "String",
|
|
1359
|
+
# max_results: 1,
|
|
1328
1360
|
# })
|
|
1329
1361
|
#
|
|
1330
1362
|
# @example Response structure
|
|
1331
1363
|
#
|
|
1332
1364
|
# resp.landing_zone_operations #=> Array
|
|
1333
|
-
# resp.landing_zone_operations[0].operation_identifier #=> String
|
|
1334
1365
|
# resp.landing_zone_operations[0].operation_type #=> String, one of "DELETE", "CREATE", "UPDATE", "RESET"
|
|
1366
|
+
# resp.landing_zone_operations[0].operation_identifier #=> String
|
|
1335
1367
|
# resp.landing_zone_operations[0].status #=> String, one of "SUCCEEDED", "FAILED", "IN_PROGRESS"
|
|
1336
1368
|
# resp.next_token #=> String
|
|
1337
1369
|
#
|
|
@@ -1350,13 +1382,13 @@ module Aws::ControlTower
|
|
|
1350
1382
|
#
|
|
1351
1383
|
# Returns one landing zone ARN.
|
|
1352
1384
|
#
|
|
1353
|
-
# @option params [Integer] :max_results
|
|
1354
|
-
# The maximum number of returned landing zone ARNs, which is one.
|
|
1355
|
-
#
|
|
1356
1385
|
# @option params [String] :next_token
|
|
1357
1386
|
# The token to continue the list from a previous API call with the same
|
|
1358
1387
|
# parameters.
|
|
1359
1388
|
#
|
|
1389
|
+
# @option params [Integer] :max_results
|
|
1390
|
+
# The maximum number of returned landing zone ARNs, which is one.
|
|
1391
|
+
#
|
|
1360
1392
|
# @return [Types::ListLandingZonesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1361
1393
|
#
|
|
1362
1394
|
# * {Types::ListLandingZonesOutput#landing_zones #landing_zones} => Array<Types::LandingZoneSummary>
|
|
@@ -1367,8 +1399,8 @@ module Aws::ControlTower
|
|
|
1367
1399
|
# @example Request syntax with placeholder values
|
|
1368
1400
|
#
|
|
1369
1401
|
# resp = client.list_landing_zones({
|
|
1370
|
-
# max_results: 1,
|
|
1371
1402
|
# next_token: "String",
|
|
1403
|
+
# max_results: 1,
|
|
1372
1404
|
# })
|
|
1373
1405
|
#
|
|
1374
1406
|
# @example Response structure
|
|
@@ -1456,7 +1488,8 @@ module Aws::ControlTower
|
|
|
1456
1488
|
req.send_request(options)
|
|
1457
1489
|
end
|
|
1458
1490
|
|
|
1459
|
-
# Resets an enabled control.
|
|
1491
|
+
# Resets an enabled control. Does not work for controls implemented with
|
|
1492
|
+
# SCPs.
|
|
1460
1493
|
#
|
|
1461
1494
|
# @option params [required, String] :enabled_control_identifier
|
|
1462
1495
|
# The ARN of the enabled control to be reset.
|
|
@@ -1594,12 +1627,12 @@ module Aws::ControlTower
|
|
|
1594
1627
|
# Specifies the new `Baseline` version, to which the `EnabledBaseline`
|
|
1595
1628
|
# should be updated.
|
|
1596
1629
|
#
|
|
1597
|
-
# @option params [required, String] :enabled_baseline_identifier
|
|
1598
|
-
# Specifies the `EnabledBaseline` resource to be updated.
|
|
1599
|
-
#
|
|
1600
1630
|
# @option params [Array<Types::EnabledBaselineParameter>] :parameters
|
|
1601
1631
|
# Parameters to apply when making an update.
|
|
1602
1632
|
#
|
|
1633
|
+
# @option params [required, String] :enabled_baseline_identifier
|
|
1634
|
+
# Specifies the `EnabledBaseline` resource to be updated.
|
|
1635
|
+
#
|
|
1603
1636
|
# @return [Types::UpdateEnabledBaselineOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1604
1637
|
#
|
|
1605
1638
|
# * {Types::UpdateEnabledBaselineOutput#operation_identifier #operation_identifier} => String
|
|
@@ -1608,7 +1641,6 @@ module Aws::ControlTower
|
|
|
1608
1641
|
#
|
|
1609
1642
|
# resp = client.update_enabled_baseline({
|
|
1610
1643
|
# baseline_version: "BaselineVersion", # required
|
|
1611
|
-
# enabled_baseline_identifier: "Arn", # required
|
|
1612
1644
|
# parameters: [
|
|
1613
1645
|
# {
|
|
1614
1646
|
# key: "String", # required
|
|
@@ -1616,6 +1648,7 @@ module Aws::ControlTower
|
|
|
1616
1648
|
# },
|
|
1617
1649
|
# },
|
|
1618
1650
|
# ],
|
|
1651
|
+
# enabled_baseline_identifier: "Arn", # required
|
|
1619
1652
|
# })
|
|
1620
1653
|
#
|
|
1621
1654
|
# @example Response structure
|
|
@@ -1653,13 +1686,13 @@ module Aws::ControlTower
|
|
|
1653
1686
|
#
|
|
1654
1687
|
# [1]: https://docs.aws.amazon.com/controltower/latest/controlreference/control-api-examples-short.html
|
|
1655
1688
|
#
|
|
1656
|
-
# @option params [required, String] :enabled_control_identifier
|
|
1657
|
-
# The ARN of the enabled control that will be updated.
|
|
1658
|
-
#
|
|
1659
1689
|
# @option params [required, Array<Types::EnabledControlParameter>] :parameters
|
|
1660
1690
|
# A key/value pair, where `Key` is of type `String` and `Value` is of
|
|
1661
1691
|
# type `Document`.
|
|
1662
1692
|
#
|
|
1693
|
+
# @option params [required, String] :enabled_control_identifier
|
|
1694
|
+
# The ARN of the enabled control that will be updated.
|
|
1695
|
+
#
|
|
1663
1696
|
# @return [Types::UpdateEnabledControlOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1664
1697
|
#
|
|
1665
1698
|
# * {Types::UpdateEnabledControlOutput#operation_identifier #operation_identifier} => String
|
|
@@ -1667,7 +1700,6 @@ module Aws::ControlTower
|
|
|
1667
1700
|
# @example Request syntax with placeholder values
|
|
1668
1701
|
#
|
|
1669
1702
|
# resp = client.update_enabled_control({
|
|
1670
|
-
# enabled_control_identifier: "Arn", # required
|
|
1671
1703
|
# parameters: [ # required
|
|
1672
1704
|
# {
|
|
1673
1705
|
# key: "String", # required
|
|
@@ -1675,6 +1707,7 @@ module Aws::ControlTower
|
|
|
1675
1707
|
# },
|
|
1676
1708
|
# },
|
|
1677
1709
|
# ],
|
|
1710
|
+
# enabled_control_identifier: "Arn", # required
|
|
1678
1711
|
# })
|
|
1679
1712
|
#
|
|
1680
1713
|
# @example Response structure
|
|
@@ -1695,8 +1728,8 @@ module Aws::ControlTower
|
|
|
1695
1728
|
# version, or on the changed parameters specified in the updated
|
|
1696
1729
|
# manifest file.
|
|
1697
1730
|
#
|
|
1698
|
-
# @option params [required, String] :
|
|
1699
|
-
# The
|
|
1731
|
+
# @option params [required, String] :version
|
|
1732
|
+
# The landing zone version, for example, 3.2.
|
|
1700
1733
|
#
|
|
1701
1734
|
# @option params [required, Hash,Array,String,Numeric,Boolean] :manifest
|
|
1702
1735
|
# The manifest file (JSON) is a text file that describes your Amazon Web
|
|
@@ -1714,8 +1747,12 @@ module Aws::ControlTower
|
|
|
1714
1747
|
#
|
|
1715
1748
|
# [1]: https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch
|
|
1716
1749
|
#
|
|
1717
|
-
# @option params [
|
|
1718
|
-
#
|
|
1750
|
+
# @option params [Array<String>] :remediation_types
|
|
1751
|
+
# Specifies the types of remediation actions to apply when updating the
|
|
1752
|
+
# landing zone configuration.
|
|
1753
|
+
#
|
|
1754
|
+
# @option params [required, String] :landing_zone_identifier
|
|
1755
|
+
# The unique identifier of the landing zone.
|
|
1719
1756
|
#
|
|
1720
1757
|
# @return [Types::UpdateLandingZoneOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1721
1758
|
#
|
|
@@ -1724,10 +1761,11 @@ module Aws::ControlTower
|
|
|
1724
1761
|
# @example Request syntax with placeholder values
|
|
1725
1762
|
#
|
|
1726
1763
|
# resp = client.update_landing_zone({
|
|
1727
|
-
#
|
|
1764
|
+
# version: "LandingZoneVersion", # required
|
|
1728
1765
|
# manifest: { # required
|
|
1729
1766
|
# },
|
|
1730
|
-
#
|
|
1767
|
+
# remediation_types: ["INHERITANCE_DRIFT"], # accepts INHERITANCE_DRIFT
|
|
1768
|
+
# landing_zone_identifier: "String", # required
|
|
1731
1769
|
# })
|
|
1732
1770
|
#
|
|
1733
1771
|
# @example Response structure
|
|
@@ -1761,7 +1799,7 @@ module Aws::ControlTower
|
|
|
1761
1799
|
tracer: tracer
|
|
1762
1800
|
)
|
|
1763
1801
|
context[:gem_name] = 'aws-sdk-controltower'
|
|
1764
|
-
context[:gem_version] = '1.
|
|
1802
|
+
context[:gem_version] = '1.52.0'
|
|
1765
1803
|
Seahorse::Client::Request.new(handlers, context)
|
|
1766
1804
|
end
|
|
1767
1805
|
|