aws-sdk-cloudformation 1.144.0 → 1.146.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 588e5ccd9f89a406accee4a481c4d508d3e125947ed1124a0ef5dfb608bb776d
4
- data.tar.gz: 94eba2018a47ff47cf52cf0e43d38f279b91acc7d0a8ee512c75bc2be35e93cd
3
+ metadata.gz: 0a2e7ebc2b1a46539e76df0ef9d0c86a94e404f39fc51c1e095c81f3ed51c0b6
4
+ data.tar.gz: ca3ac07a61e37ff7141ff9cedfdd1222f32b1d0412b501011f5a48b67b45db11
5
5
  SHA512:
6
- metadata.gz: 9fb0a85aa6910d072024b8bdfc8ddf2aa5840bbe7fe5ac668c219f6e23bdc28937dc814e3e1b4d7a3080dce34f17157deb1a0393d32b332426778747760fb7a1
7
- data.tar.gz: ad3f2795a007600e5aa30f6e99374ad78ca46b066ef8e21ec586f07b3ab296a6874547dc13166f1f905a935a17b3eccc76a0a11015ef33d7b1bf5bcd43da9ba8
6
+ metadata.gz: 35dec9b2811a745dac77aee04656f8ce0e24ccea89e922405ffe0d2e7b0687e3768ec01b7b8b52badd6da5425db9d6909aceb2c0ce3dbfdb2d1437f79af7351d
7
+ data.tar.gz: 391b31998a3afdb67267ac308b5607f8ae93fdab50cafe73e2cf2bbc374a481f0db3855f854687fee4b390920ed1ffa79bb76a98e67486405a6e395a1b41299e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.146.0 (2025-11-21)
5
+ ------------------
6
+
7
+ * Feature - Adds the DependsOn field to the AutoDeployment configuration parameter for CreateStackSet, UpdateStackSet, and DescribeStackSet APIs, allowing users to set and read auto-deployment dependencies between StackSets
8
+
9
+ 1.145.0 (2025-11-18)
10
+ ------------------
11
+
12
+ * Feature - New CloudFormation DescribeEvents API with operation ID tracking and failure filtering capabilities to quickly identify root causes of deployment failures. Also, a DeploymentMode parameter for the CreateChangeSet API that enables creation of drift-aware change sets for safe drift management.
13
+
4
14
  1.144.0 (2025-11-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.146.0
@@ -1163,6 +1163,24 @@ module Aws::CloudFormation
1163
1163
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/import-resources-automatically.html
1164
1164
  # [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
1165
1165
  #
1166
+ # @option params [String] :deployment_mode
1167
+ # Determines how CloudFormation handles configuration drift during
1168
+ # deployment.
1169
+ #
1170
+ # * `REVERT_DRIFT` – Creates a drift-aware change set that brings actual
1171
+ # resource states in line with template definitions. Provides a
1172
+ # three-way comparison between actual state, previous deployment
1173
+ # state, and desired state.
1174
+ #
1175
+ # ^
1176
+ #
1177
+ # For more information, see [Using drift-aware change sets][1] in the
1178
+ # *CloudFormation User Guide*.
1179
+ #
1180
+ #
1181
+ #
1182
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/drift-aware-change-sets.html
1183
+ #
1166
1184
  # @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1167
1185
  #
1168
1186
  # * {Types::CreateChangeSetOutput#id #id} => String
@@ -1218,6 +1236,7 @@ module Aws::CloudFormation
1218
1236
  # include_nested_stacks: false,
1219
1237
  # on_stack_failure: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK, DELETE
1220
1238
  # import_existing_resources: false,
1239
+ # deployment_mode: "REVERT_DRIFT", # accepts REVERT_DRIFT
1221
1240
  # })
1222
1241
  #
1223
1242
  # @example Response structure
@@ -1605,6 +1624,7 @@ module Aws::CloudFormation
1605
1624
  # @return [Types::CreateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1606
1625
  #
1607
1626
  # * {Types::CreateStackOutput#stack_id #stack_id} => String
1627
+ # * {Types::CreateStackOutput#operation_id #operation_id} => String
1608
1628
  #
1609
1629
  # @example Request syntax with placeholder values
1610
1630
  #
@@ -1652,6 +1672,7 @@ module Aws::CloudFormation
1652
1672
  # @example Response structure
1653
1673
  #
1654
1674
  # resp.stack_id #=> String
1675
+ # resp.operation_id #=> String
1655
1676
  #
1656
1677
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack AWS API Documentation
1657
1678
  #
@@ -2152,6 +2173,7 @@ module Aws::CloudFormation
2152
2173
  # auto_deployment: {
2153
2174
  # enabled: false,
2154
2175
  # retain_stacks_on_account_removal: false,
2176
+ # depends_on: ["StackSetARN"],
2155
2177
  # },
2156
2178
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
2157
2179
  # client_request_token: "ClientRequestToken",
@@ -2724,6 +2746,7 @@ module Aws::CloudFormation
2724
2746
  # * {Types::DescribeChangeSetOutput#execution_status #execution_status} => String
2725
2747
  # * {Types::DescribeChangeSetOutput#status #status} => String
2726
2748
  # * {Types::DescribeChangeSetOutput#status_reason #status_reason} => String
2749
+ # * {Types::DescribeChangeSetOutput#stack_drift_status #stack_drift_status} => String
2727
2750
  # * {Types::DescribeChangeSetOutput#notification_arns #notification_arns} => Array<String>
2728
2751
  # * {Types::DescribeChangeSetOutput#rollback_configuration #rollback_configuration} => Types::RollbackConfiguration
2729
2752
  # * {Types::DescribeChangeSetOutput#capabilities #capabilities} => Array<String>
@@ -2735,6 +2758,9 @@ module Aws::CloudFormation
2735
2758
  # * {Types::DescribeChangeSetOutput#root_change_set_id #root_change_set_id} => String
2736
2759
  # * {Types::DescribeChangeSetOutput#on_stack_failure #on_stack_failure} => String
2737
2760
  # * {Types::DescribeChangeSetOutput#import_existing_resources #import_existing_resources} => Boolean
2761
+ # * {Types::DescribeChangeSetOutput#deployment_mode #deployment_mode} => String
2762
+ #
2763
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2738
2764
  #
2739
2765
  # @example Request syntax with placeholder values
2740
2766
  #
@@ -2761,6 +2787,7 @@ module Aws::CloudFormation
2761
2787
  # resp.execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
2762
2788
  # resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "FAILED"
2763
2789
  # resp.status_reason #=> String
2790
+ # resp.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
2764
2791
  # resp.notification_arns #=> Array
2765
2792
  # resp.notification_arns[0] #=> String
2766
2793
  # resp.rollback_configuration.rollback_triggers #=> Array
@@ -2776,13 +2803,17 @@ module Aws::CloudFormation
2776
2803
  # resp.changes[0].type #=> String, one of "Resource"
2777
2804
  # resp.changes[0].hook_invocation_count #=> Integer
2778
2805
  # resp.changes[0].resource_change.policy_action #=> String, one of "Delete", "Retain", "Snapshot", "ReplaceAndDelete", "ReplaceAndRetain", "ReplaceAndSnapshot"
2779
- # resp.changes[0].resource_change.action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic"
2806
+ # resp.changes[0].resource_change.action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic", "SyncWithActual"
2780
2807
  # resp.changes[0].resource_change.logical_resource_id #=> String
2781
2808
  # resp.changes[0].resource_change.physical_resource_id #=> String
2782
2809
  # resp.changes[0].resource_change.resource_type #=> String
2783
2810
  # resp.changes[0].resource_change.replacement #=> String, one of "True", "False", "Conditional"
2784
2811
  # resp.changes[0].resource_change.scope #=> Array
2785
2812
  # resp.changes[0].resource_change.scope[0] #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
2813
+ # resp.changes[0].resource_change.resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
2814
+ # resp.changes[0].resource_change.resource_drift_ignored_attributes #=> Array
2815
+ # resp.changes[0].resource_change.resource_drift_ignored_attributes[0].path #=> String
2816
+ # resp.changes[0].resource_change.resource_drift_ignored_attributes[0].reason #=> String, one of "MANAGED_BY_AWS", "WRITE_ONLY_PROPERTY"
2786
2817
  # resp.changes[0].resource_change.details #=> Array
2787
2818
  # resp.changes[0].resource_change.details[0].target.attribute #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
2788
2819
  # resp.changes[0].resource_change.details[0].target.name #=> String
@@ -2790,21 +2821,28 @@ module Aws::CloudFormation
2790
2821
  # resp.changes[0].resource_change.details[0].target.path #=> String
2791
2822
  # resp.changes[0].resource_change.details[0].target.before_value #=> String
2792
2823
  # resp.changes[0].resource_change.details[0].target.after_value #=> String
2793
- # resp.changes[0].resource_change.details[0].target.attribute_change_type #=> String, one of "Add", "Remove", "Modify"
2824
+ # resp.changes[0].resource_change.details[0].target.before_value_from #=> String, one of "PREVIOUS_DEPLOYMENT_STATE", "ACTUAL_STATE"
2825
+ # resp.changes[0].resource_change.details[0].target.after_value_from #=> String, one of "TEMPLATE"
2826
+ # resp.changes[0].resource_change.details[0].target.drift.previous_value #=> String
2827
+ # resp.changes[0].resource_change.details[0].target.drift.actual_value #=> String
2828
+ # resp.changes[0].resource_change.details[0].target.drift.drift_detection_timestamp #=> Time
2829
+ # resp.changes[0].resource_change.details[0].target.attribute_change_type #=> String, one of "Add", "Remove", "Modify", "SyncWithActual"
2794
2830
  # resp.changes[0].resource_change.details[0].evaluation #=> String, one of "Static", "Dynamic"
2795
- # resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic"
2831
+ # resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic", "NoModification"
2796
2832
  # resp.changes[0].resource_change.details[0].causing_entity #=> String
2797
2833
  # resp.changes[0].resource_change.change_set_id #=> String
2798
2834
  # resp.changes[0].resource_change.module_info.type_hierarchy #=> String
2799
2835
  # resp.changes[0].resource_change.module_info.logical_id_hierarchy #=> String
2800
2836
  # resp.changes[0].resource_change.before_context #=> String
2801
2837
  # resp.changes[0].resource_change.after_context #=> String
2838
+ # resp.changes[0].resource_change.previous_deployment_context #=> String
2802
2839
  # resp.next_token #=> String
2803
2840
  # resp.include_nested_stacks #=> Boolean
2804
2841
  # resp.parent_change_set_id #=> String
2805
2842
  # resp.root_change_set_id #=> String
2806
2843
  # resp.on_stack_failure #=> String, one of "DO_NOTHING", "ROLLBACK", "DELETE"
2807
2844
  # resp.import_existing_resources #=> Boolean
2845
+ # resp.deployment_mode #=> String, one of "REVERT_DRIFT"
2808
2846
  #
2809
2847
  #
2810
2848
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2871,7 +2909,7 @@ module Aws::CloudFormation
2871
2909
  # resp.hooks[0].target_details.target_type #=> String, one of "RESOURCE"
2872
2910
  # resp.hooks[0].target_details.resource_target_details.logical_resource_id #=> String
2873
2911
  # resp.hooks[0].target_details.resource_target_details.resource_type #=> String
2874
- # resp.hooks[0].target_details.resource_target_details.resource_action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic"
2912
+ # resp.hooks[0].target_details.resource_target_details.resource_action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic", "SyncWithActual"
2875
2913
  # resp.status #=> String, one of "PLANNING", "PLANNED", "UNAVAILABLE"
2876
2914
  # resp.next_token #=> String
2877
2915
  # resp.stack_id #=> String
@@ -2886,6 +2924,112 @@ module Aws::CloudFormation
2886
2924
  req.send_request(options)
2887
2925
  end
2888
2926
 
2927
+ # Returns CloudFormation events based on flexible query criteria. Groups
2928
+ # events by operation ID, enabling you to focus on individual stack
2929
+ # operations during deployment.
2930
+ #
2931
+ # An operation is any action performed on a stack, including stack
2932
+ # lifecycle actions (Create, Update, Delete, Rollback), change set
2933
+ # creation, nested stack creation, and automatic rollbacks triggered by
2934
+ # failures. Each operation has a unique identifier (Operation ID) and
2935
+ # represents a discrete change attempt on the stack.
2936
+ #
2937
+ # Returns different types of events including:
2938
+ #
2939
+ # * **Progress events** - Status updates during stack operation
2940
+ # execution.
2941
+ #
2942
+ # * **Validation errors** - Failures from CloudFormation Early
2943
+ # Validations.
2944
+ #
2945
+ # * **Provisioning errors** - Resource creation and update failures.
2946
+ #
2947
+ # * **Hook invocation errors** - Failures from CloudFormation Hook
2948
+ # during stack operations.
2949
+ #
2950
+ # <note markdown="1"> One of `ChangeSetName`, `OperationId` or `StackName` must be specified
2951
+ # as input.
2952
+ #
2953
+ # </note>
2954
+ #
2955
+ # @option params [String] :stack_name
2956
+ # The name or unique stack ID for which you want to retrieve events.
2957
+ #
2958
+ # @option params [String] :change_set_name
2959
+ # The name or Amazon Resource Name (ARN) of the change set for which you
2960
+ # want to retrieve events.
2961
+ #
2962
+ # @option params [String] :operation_id
2963
+ # The unique identifier of the operation for which you want to retrieve
2964
+ # events.
2965
+ #
2966
+ # @option params [Types::EventFilter] :filters
2967
+ # Filters to apply when retrieving events.
2968
+ #
2969
+ # @option params [String] :next_token
2970
+ # The token for the next set of items to return. (You received this
2971
+ # token from a previous call.)
2972
+ #
2973
+ # @return [Types::DescribeEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2974
+ #
2975
+ # * {Types::DescribeEventsOutput#operation_events #operation_events} => Array&lt;Types::OperationEvent&gt;
2976
+ # * {Types::DescribeEventsOutput#next_token #next_token} => String
2977
+ #
2978
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2979
+ #
2980
+ # @example Request syntax with placeholder values
2981
+ #
2982
+ # resp = client.describe_events({
2983
+ # stack_name: "StackNameOrId",
2984
+ # change_set_name: "ChangeSetNameOrId",
2985
+ # operation_id: "OperationId",
2986
+ # filters: {
2987
+ # failed_events: false,
2988
+ # },
2989
+ # next_token: "NextToken",
2990
+ # })
2991
+ #
2992
+ # @example Response structure
2993
+ #
2994
+ # resp.operation_events #=> Array
2995
+ # resp.operation_events[0].event_id #=> String
2996
+ # resp.operation_events[0].stack_id #=> String
2997
+ # resp.operation_events[0].operation_id #=> String
2998
+ # resp.operation_events[0].operation_type #=> String, one of "CREATE_STACK", "UPDATE_STACK", "DELETE_STACK", "CONTINUE_ROLLBACK", "ROLLBACK", "CREATE_CHANGESET"
2999
+ # resp.operation_events[0].operation_status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED"
3000
+ # resp.operation_events[0].event_type #=> String, one of "STACK_EVENT", "PROGRESS_EVENT", "VALIDATION_ERROR", "PROVISIONING_ERROR", "HOOK_INVOCATION_ERROR"
3001
+ # resp.operation_events[0].logical_resource_id #=> String
3002
+ # resp.operation_events[0].physical_resource_id #=> String
3003
+ # resp.operation_events[0].resource_type #=> String
3004
+ # resp.operation_events[0].timestamp #=> Time
3005
+ # resp.operation_events[0].start_time #=> Time
3006
+ # resp.operation_events[0].end_time #=> Time
3007
+ # resp.operation_events[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "EXPORT_FAILED", "EXPORT_COMPLETE", "EXPORT_IN_PROGRESS", "EXPORT_ROLLBACK_IN_PROGRESS", "EXPORT_ROLLBACK_FAILED", "EXPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
3008
+ # resp.operation_events[0].resource_status_reason #=> String
3009
+ # resp.operation_events[0].resource_properties #=> String
3010
+ # resp.operation_events[0].client_request_token #=> String
3011
+ # resp.operation_events[0].hook_type #=> String
3012
+ # resp.operation_events[0].hook_status #=> String, one of "HOOK_IN_PROGRESS", "HOOK_COMPLETE_SUCCEEDED", "HOOK_COMPLETE_FAILED", "HOOK_FAILED"
3013
+ # resp.operation_events[0].hook_status_reason #=> String
3014
+ # resp.operation_events[0].hook_invocation_point #=> String, one of "PRE_PROVISION"
3015
+ # resp.operation_events[0].hook_failure_mode #=> String, one of "FAIL", "WARN"
3016
+ # resp.operation_events[0].detailed_status #=> String, one of "CONFIGURATION_COMPLETE", "VALIDATION_FAILED"
3017
+ # resp.operation_events[0].validation_failure_mode #=> String, one of "FAIL", "WARN"
3018
+ # resp.operation_events[0].validation_name #=> String
3019
+ # resp.operation_events[0].validation_status #=> String, one of "FAILED", "SKIPPED"
3020
+ # resp.operation_events[0].validation_status_reason #=> String
3021
+ # resp.operation_events[0].validation_path #=> String
3022
+ # resp.next_token #=> String
3023
+ #
3024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeEvents AWS API Documentation
3025
+ #
3026
+ # @overload describe_events(params = {})
3027
+ # @param [Hash] params ({})
3028
+ def describe_events(params = {}, options = {})
3029
+ req = build_request(:describe_events, params)
3030
+ req.send_request(options)
3031
+ end
3032
+
2889
3033
  # Describes a generated template. The output includes details about the
2890
3034
  # progress of the creation of a generated template started by a
2891
3035
  # `CreateGeneratedTemplate` API action or the update of a generated
@@ -3342,6 +3486,7 @@ module Aws::CloudFormation
3342
3486
  # resp.stack_events[0].stack_id #=> String
3343
3487
  # resp.stack_events[0].event_id #=> String
3344
3488
  # resp.stack_events[0].stack_name #=> String
3489
+ # resp.stack_events[0].operation_id #=> String
3345
3490
  # resp.stack_events[0].logical_resource_id #=> String
3346
3491
  # resp.stack_events[0].physical_resource_id #=> String
3347
3492
  # resp.stack_events[0].resource_type #=> String
@@ -3537,7 +3682,7 @@ module Aws::CloudFormation
3537
3682
  # resp.stack_resource_detail.resource_status_reason #=> String
3538
3683
  # resp.stack_resource_detail.description #=> String
3539
3684
  # resp.stack_resource_detail.metadata #=> String
3540
- # resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
3685
+ # resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
3541
3686
  # resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
3542
3687
  # resp.stack_resource_detail.module_info.type_hierarchy #=> String
3543
3688
  # resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
@@ -3613,7 +3758,7 @@ module Aws::CloudFormation
3613
3758
  #
3614
3759
  # resp = client.describe_stack_resource_drifts({
3615
3760
  # stack_name: "StackNameOrId", # required
3616
- # stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
3761
+ # stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN, UNSUPPORTED
3617
3762
  # next_token: "NextToken",
3618
3763
  # max_results: 1,
3619
3764
  # })
@@ -3635,7 +3780,7 @@ module Aws::CloudFormation
3635
3780
  # resp.stack_resource_drifts[0].property_differences[0].expected_value #=> String
3636
3781
  # resp.stack_resource_drifts[0].property_differences[0].actual_value #=> String
3637
3782
  # resp.stack_resource_drifts[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
3638
- # resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
3783
+ # resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
3639
3784
  # resp.stack_resource_drifts[0].timestamp #=> Time
3640
3785
  # resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
3641
3786
  # resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
@@ -3731,7 +3876,7 @@ module Aws::CloudFormation
3731
3876
  # resp.stack_resources[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "EXPORT_FAILED", "EXPORT_COMPLETE", "EXPORT_IN_PROGRESS", "EXPORT_ROLLBACK_IN_PROGRESS", "EXPORT_ROLLBACK_FAILED", "EXPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
3732
3877
  # resp.stack_resources[0].resource_status_reason #=> String
3733
3878
  # resp.stack_resources[0].description #=> String
3734
- # resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
3879
+ # resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
3735
3880
  # resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
3736
3881
  # resp.stack_resources[0].module_info.type_hierarchy #=> String
3737
3882
  # resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
@@ -3818,6 +3963,8 @@ module Aws::CloudFormation
3818
3963
  # resp.stack_set.stack_set_drift_detection_details.failed_stack_instances_count #=> Integer
3819
3964
  # resp.stack_set.auto_deployment.enabled #=> Boolean
3820
3965
  # resp.stack_set.auto_deployment.retain_stacks_on_account_removal #=> Boolean
3966
+ # resp.stack_set.auto_deployment.depends_on #=> Array
3967
+ # resp.stack_set.auto_deployment.depends_on[0] #=> String
3821
3968
  # resp.stack_set.permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
3822
3969
  # resp.stack_set.organizational_unit_ids #=> Array
3823
3970
  # resp.stack_set.organizational_unit_ids[0] #=> String
@@ -4030,6 +4177,9 @@ module Aws::CloudFormation
4030
4177
  # resp.stacks[0].retain_except_on_create #=> Boolean
4031
4178
  # resp.stacks[0].deletion_mode #=> String, one of "STANDARD", "FORCE_DELETE_STACK"
4032
4179
  # resp.stacks[0].detailed_status #=> String, one of "CONFIGURATION_COMPLETE", "VALIDATION_FAILED"
4180
+ # resp.stacks[0].last_operations #=> Array
4181
+ # resp.stacks[0].last_operations[0].operation_type #=> String, one of "CREATE_STACK", "UPDATE_STACK", "DELETE_STACK", "CONTINUE_ROLLBACK", "ROLLBACK", "CREATE_CHANGESET"
4182
+ # resp.stacks[0].last_operations[0].operation_id #=> String
4033
4183
  # resp.next_token #=> String
4034
4184
  #
4035
4185
  #
@@ -4356,7 +4506,7 @@ module Aws::CloudFormation
4356
4506
  # resp.stack_resource_drift.property_differences[0].expected_value #=> String
4357
4507
  # resp.stack_resource_drift.property_differences[0].actual_value #=> String
4358
4508
  # resp.stack_resource_drift.property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
4359
- # resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
4509
+ # resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
4360
4510
  # resp.stack_resource_drift.timestamp #=> Time
4361
4511
  # resp.stack_resource_drift.module_info.type_hierarchy #=> String
4362
4512
  # resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
@@ -4726,6 +4876,16 @@ module Aws::CloudFormation
4726
4876
  # Retrieves detailed information and remediation guidance for a Hook
4727
4877
  # invocation result.
4728
4878
  #
4879
+ # If the Hook uses a KMS key to encrypt annotations, callers of the
4880
+ # `GetHookResult` operation must have `kms:Decrypt` permissions. For
4881
+ # more information, see [KMS key policy and permissions for encrypting
4882
+ # CloudFormation Hooks results at rest][1] in the *CloudFormation Hooks
4883
+ # User Guide*.
4884
+ #
4885
+ #
4886
+ #
4887
+ # [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/hooks-kms-key-policy.html
4888
+ #
4729
4889
  # @option params [String] :hook_result_id
4730
4890
  # The unique identifier (ID) of the Hook invocation result that you want
4731
4891
  # details about. You can get the ID from the [ListHookResults][1]
@@ -5863,7 +6023,7 @@ module Aws::CloudFormation
5863
6023
  # stack_set_name: "StackSetNameOrId", # required
5864
6024
  # next_token: "NextToken",
5865
6025
  # max_results: 1,
5866
- # stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
6026
+ # stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN, UNSUPPORTED
5867
6027
  # stack_instance_account: "Account", # required
5868
6028
  # stack_instance_region: "Region", # required
5869
6029
  # operation_id: "ClientRequestToken", # required
@@ -5885,7 +6045,7 @@ module Aws::CloudFormation
5885
6045
  # resp.summaries[0].property_differences[0].expected_value #=> String
5886
6046
  # resp.summaries[0].property_differences[0].actual_value #=> String
5887
6047
  # resp.summaries[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
5888
- # resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
6048
+ # resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
5889
6049
  # resp.summaries[0].timestamp #=> Time
5890
6050
  # resp.next_token #=> String
5891
6051
  #
@@ -6153,7 +6313,7 @@ module Aws::CloudFormation
6153
6313
  # resp.stack_resource_summaries[0].last_updated_timestamp #=> Time
6154
6314
  # resp.stack_resource_summaries[0].resource_status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "CREATE_COMPLETE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETE_COMPLETE", "DELETE_SKIPPED", "UPDATE_IN_PROGRESS", "UPDATE_FAILED", "UPDATE_COMPLETE", "IMPORT_FAILED", "IMPORT_COMPLETE", "IMPORT_IN_PROGRESS", "IMPORT_ROLLBACK_IN_PROGRESS", "IMPORT_ROLLBACK_FAILED", "IMPORT_ROLLBACK_COMPLETE", "EXPORT_FAILED", "EXPORT_COMPLETE", "EXPORT_IN_PROGRESS", "EXPORT_ROLLBACK_IN_PROGRESS", "EXPORT_ROLLBACK_FAILED", "EXPORT_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_IN_PROGRESS", "UPDATE_ROLLBACK_COMPLETE", "UPDATE_ROLLBACK_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_COMPLETE", "ROLLBACK_FAILED"
6155
6315
  # resp.stack_resource_summaries[0].resource_status_reason #=> String
6156
- # resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN"
6316
+ # resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
6157
6317
  # resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
6158
6318
  # resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
6159
6319
  # resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
@@ -6501,6 +6661,8 @@ module Aws::CloudFormation
6501
6661
  # resp.summaries[0].status #=> String, one of "ACTIVE", "DELETED"
6502
6662
  # resp.summaries[0].auto_deployment.enabled #=> Boolean
6503
6663
  # resp.summaries[0].auto_deployment.retain_stacks_on_account_removal #=> Boolean
6664
+ # resp.summaries[0].auto_deployment.depends_on #=> Array
6665
+ # resp.summaries[0].auto_deployment.depends_on[0] #=> String
6504
6666
  # resp.summaries[0].permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
6505
6667
  # resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
6506
6668
  # resp.summaries[0].last_drift_check_timestamp #=> Time
@@ -6562,6 +6724,9 @@ module Aws::CloudFormation
6562
6724
  # resp.stack_summaries[0].root_id #=> String
6563
6725
  # resp.stack_summaries[0].drift_information.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
6564
6726
  # resp.stack_summaries[0].drift_information.last_check_timestamp #=> Time
6727
+ # resp.stack_summaries[0].last_operations #=> Array
6728
+ # resp.stack_summaries[0].last_operations[0].operation_type #=> String, one of "CREATE_STACK", "UPDATE_STACK", "DELETE_STACK", "CONTINUE_ROLLBACK", "ROLLBACK", "CREATE_CHANGESET"
6729
+ # resp.stack_summaries[0].last_operations[0].operation_id #=> String
6565
6730
  # resp.next_token #=> String
6566
6731
  #
6567
6732
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks AWS API Documentation
@@ -7277,6 +7442,7 @@ module Aws::CloudFormation
7277
7442
  # @return [Types::RollbackStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7278
7443
  #
7279
7444
  # * {Types::RollbackStackOutput#stack_id #stack_id} => String
7445
+ # * {Types::RollbackStackOutput#operation_id #operation_id} => String
7280
7446
  #
7281
7447
  # @example Request syntax with placeholder values
7282
7448
  #
@@ -7290,6 +7456,7 @@ module Aws::CloudFormation
7290
7456
  # @example Response structure
7291
7457
  #
7292
7458
  # resp.stack_id #=> String
7459
+ # resp.operation_id #=> String
7293
7460
  #
7294
7461
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStack AWS API Documentation
7295
7462
  #
@@ -7508,10 +7675,10 @@ module Aws::CloudFormation
7508
7675
  #
7509
7676
  # @option params [required, String] :unique_id
7510
7677
  # A unique ID of the signal. When you signal Amazon EC2 instances or
7511
- # Auto Scaling groups, specify the instance ID that you are signaling as
7512
- # the unique ID. If you send multiple signals to a single resource (such
7513
- # as signaling a wait condition), each signal requires a different
7514
- # unique ID.
7678
+ # Amazon EC2 Auto Scaling groups, specify the instance ID that you are
7679
+ # signaling as the unique ID. If you send multiple signals to a single
7680
+ # resource (such as signaling a wait condition), each signal requires a
7681
+ # different unique ID.
7515
7682
  #
7516
7683
  # @option params [required, String] :status
7517
7684
  # The status of the signal, which is either success or failure. A
@@ -8178,6 +8345,7 @@ module Aws::CloudFormation
8178
8345
  # @return [Types::UpdateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8179
8346
  #
8180
8347
  # * {Types::UpdateStackOutput#stack_id #stack_id} => String
8348
+ # * {Types::UpdateStackOutput#operation_id #operation_id} => String
8181
8349
  #
8182
8350
  # @example Request syntax with placeholder values
8183
8351
  #
@@ -8225,6 +8393,7 @@ module Aws::CloudFormation
8225
8393
  # @example Response structure
8226
8394
  #
8227
8395
  # resp.stack_id #=> String
8396
+ # resp.operation_id #=> String
8228
8397
  #
8229
8398
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack AWS API Documentation
8230
8399
  #
@@ -8810,6 +8979,7 @@ module Aws::CloudFormation
8810
8979
  # auto_deployment: {
8811
8980
  # enabled: false,
8812
8981
  # retain_stacks_on_account_removal: false,
8982
+ # depends_on: ["StackSetARN"],
8813
8983
  # },
8814
8984
  # operation_id: "ClientRequestToken",
8815
8985
  # accounts: ["Account"],
@@ -8955,7 +9125,7 @@ module Aws::CloudFormation
8955
9125
  tracer: tracer
8956
9126
  )
8957
9127
  context[:gem_name] = 'aws-sdk-cloudformation'
8958
- context[:gem_version] = '1.144.0'
9128
+ context[:gem_version] = '1.146.0'
8959
9129
  Seahorse::Client::Request.new(handlers, context)
8960
9130
  end
8961
9131