aws-sdk-cloudformation 1.144.0 → 1.145.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-cloudformation/client.rb +177 -13
- data/lib/aws-sdk-cloudformation/client_api.rb +121 -0
- data/lib/aws-sdk-cloudformation/event.rb +7 -0
- data/lib/aws-sdk-cloudformation/stack.rb +6 -0
- data/lib/aws-sdk-cloudformation/types.rb +447 -10
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +26 -3
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +95 -10
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7450a519aada2b53eed66f261e7ef1cbed8c143ff936b78807a538bccc2c2151
|
|
4
|
+
data.tar.gz: fff4fc578a171f20c2fb31f9cfc9f0869461bacfe8e3d262ef8e7d0f19bac5a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b4a5aebefe63953053796f1ed0caab102d79c4539815f8e71f145511c3b28a3fb64a0e25e7011520ebb90aaac15f49c7238ed51c30e886732f92c483d6e09e2
|
|
7
|
+
data.tar.gz: 6a4b864f5bdcc614a989e15470d909f403a44634ca0035bf3df0dc49976c77cb4de407bf13077a925e350f41d1f9e6c4c69133ef422b9778574ac760f3650ec2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.145.0 (2025-11-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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.
|
|
8
|
+
|
|
4
9
|
1.144.0 (2025-11-13)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.145.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
|
#
|
|
@@ -2724,6 +2745,7 @@ module Aws::CloudFormation
|
|
|
2724
2745
|
# * {Types::DescribeChangeSetOutput#execution_status #execution_status} => String
|
|
2725
2746
|
# * {Types::DescribeChangeSetOutput#status #status} => String
|
|
2726
2747
|
# * {Types::DescribeChangeSetOutput#status_reason #status_reason} => String
|
|
2748
|
+
# * {Types::DescribeChangeSetOutput#stack_drift_status #stack_drift_status} => String
|
|
2727
2749
|
# * {Types::DescribeChangeSetOutput#notification_arns #notification_arns} => Array<String>
|
|
2728
2750
|
# * {Types::DescribeChangeSetOutput#rollback_configuration #rollback_configuration} => Types::RollbackConfiguration
|
|
2729
2751
|
# * {Types::DescribeChangeSetOutput#capabilities #capabilities} => Array<String>
|
|
@@ -2735,6 +2757,9 @@ module Aws::CloudFormation
|
|
|
2735
2757
|
# * {Types::DescribeChangeSetOutput#root_change_set_id #root_change_set_id} => String
|
|
2736
2758
|
# * {Types::DescribeChangeSetOutput#on_stack_failure #on_stack_failure} => String
|
|
2737
2759
|
# * {Types::DescribeChangeSetOutput#import_existing_resources #import_existing_resources} => Boolean
|
|
2760
|
+
# * {Types::DescribeChangeSetOutput#deployment_mode #deployment_mode} => String
|
|
2761
|
+
#
|
|
2762
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2738
2763
|
#
|
|
2739
2764
|
# @example Request syntax with placeholder values
|
|
2740
2765
|
#
|
|
@@ -2761,6 +2786,7 @@ module Aws::CloudFormation
|
|
|
2761
2786
|
# resp.execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
|
|
2762
2787
|
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "FAILED"
|
|
2763
2788
|
# resp.status_reason #=> String
|
|
2789
|
+
# resp.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
|
2764
2790
|
# resp.notification_arns #=> Array
|
|
2765
2791
|
# resp.notification_arns[0] #=> String
|
|
2766
2792
|
# resp.rollback_configuration.rollback_triggers #=> Array
|
|
@@ -2776,13 +2802,17 @@ module Aws::CloudFormation
|
|
|
2776
2802
|
# resp.changes[0].type #=> String, one of "Resource"
|
|
2777
2803
|
# resp.changes[0].hook_invocation_count #=> Integer
|
|
2778
2804
|
# 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"
|
|
2805
|
+
# resp.changes[0].resource_change.action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic", "SyncWithActual"
|
|
2780
2806
|
# resp.changes[0].resource_change.logical_resource_id #=> String
|
|
2781
2807
|
# resp.changes[0].resource_change.physical_resource_id #=> String
|
|
2782
2808
|
# resp.changes[0].resource_change.resource_type #=> String
|
|
2783
2809
|
# resp.changes[0].resource_change.replacement #=> String, one of "True", "False", "Conditional"
|
|
2784
2810
|
# resp.changes[0].resource_change.scope #=> Array
|
|
2785
2811
|
# resp.changes[0].resource_change.scope[0] #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
|
|
2812
|
+
# resp.changes[0].resource_change.resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
2813
|
+
# resp.changes[0].resource_change.resource_drift_ignored_attributes #=> Array
|
|
2814
|
+
# resp.changes[0].resource_change.resource_drift_ignored_attributes[0].path #=> String
|
|
2815
|
+
# resp.changes[0].resource_change.resource_drift_ignored_attributes[0].reason #=> String, one of "MANAGED_BY_AWS", "WRITE_ONLY_PROPERTY"
|
|
2786
2816
|
# resp.changes[0].resource_change.details #=> Array
|
|
2787
2817
|
# resp.changes[0].resource_change.details[0].target.attribute #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
|
|
2788
2818
|
# resp.changes[0].resource_change.details[0].target.name #=> String
|
|
@@ -2790,21 +2820,28 @@ module Aws::CloudFormation
|
|
|
2790
2820
|
# resp.changes[0].resource_change.details[0].target.path #=> String
|
|
2791
2821
|
# resp.changes[0].resource_change.details[0].target.before_value #=> String
|
|
2792
2822
|
# resp.changes[0].resource_change.details[0].target.after_value #=> String
|
|
2793
|
-
# resp.changes[0].resource_change.details[0].target.
|
|
2823
|
+
# resp.changes[0].resource_change.details[0].target.before_value_from #=> String, one of "PREVIOUS_DEPLOYMENT_STATE", "ACTUAL_STATE"
|
|
2824
|
+
# resp.changes[0].resource_change.details[0].target.after_value_from #=> String, one of "TEMPLATE"
|
|
2825
|
+
# resp.changes[0].resource_change.details[0].target.drift.previous_value #=> String
|
|
2826
|
+
# resp.changes[0].resource_change.details[0].target.drift.actual_value #=> String
|
|
2827
|
+
# resp.changes[0].resource_change.details[0].target.drift.drift_detection_timestamp #=> Time
|
|
2828
|
+
# resp.changes[0].resource_change.details[0].target.attribute_change_type #=> String, one of "Add", "Remove", "Modify", "SyncWithActual"
|
|
2794
2829
|
# 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"
|
|
2830
|
+
# resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic", "NoModification"
|
|
2796
2831
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
|
2797
2832
|
# resp.changes[0].resource_change.change_set_id #=> String
|
|
2798
2833
|
# resp.changes[0].resource_change.module_info.type_hierarchy #=> String
|
|
2799
2834
|
# resp.changes[0].resource_change.module_info.logical_id_hierarchy #=> String
|
|
2800
2835
|
# resp.changes[0].resource_change.before_context #=> String
|
|
2801
2836
|
# resp.changes[0].resource_change.after_context #=> String
|
|
2837
|
+
# resp.changes[0].resource_change.previous_deployment_context #=> String
|
|
2802
2838
|
# resp.next_token #=> String
|
|
2803
2839
|
# resp.include_nested_stacks #=> Boolean
|
|
2804
2840
|
# resp.parent_change_set_id #=> String
|
|
2805
2841
|
# resp.root_change_set_id #=> String
|
|
2806
2842
|
# resp.on_stack_failure #=> String, one of "DO_NOTHING", "ROLLBACK", "DELETE"
|
|
2807
2843
|
# resp.import_existing_resources #=> Boolean
|
|
2844
|
+
# resp.deployment_mode #=> String, one of "REVERT_DRIFT"
|
|
2808
2845
|
#
|
|
2809
2846
|
#
|
|
2810
2847
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2871,7 +2908,7 @@ module Aws::CloudFormation
|
|
|
2871
2908
|
# resp.hooks[0].target_details.target_type #=> String, one of "RESOURCE"
|
|
2872
2909
|
# resp.hooks[0].target_details.resource_target_details.logical_resource_id #=> String
|
|
2873
2910
|
# 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"
|
|
2911
|
+
# resp.hooks[0].target_details.resource_target_details.resource_action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic", "SyncWithActual"
|
|
2875
2912
|
# resp.status #=> String, one of "PLANNING", "PLANNED", "UNAVAILABLE"
|
|
2876
2913
|
# resp.next_token #=> String
|
|
2877
2914
|
# resp.stack_id #=> String
|
|
@@ -2886,6 +2923,112 @@ module Aws::CloudFormation
|
|
|
2886
2923
|
req.send_request(options)
|
|
2887
2924
|
end
|
|
2888
2925
|
|
|
2926
|
+
# Returns CloudFormation events based on flexible query criteria. Groups
|
|
2927
|
+
# events by operation ID, enabling you to focus on individual stack
|
|
2928
|
+
# operations during deployment.
|
|
2929
|
+
#
|
|
2930
|
+
# An operation is any action performed on a stack, including stack
|
|
2931
|
+
# lifecycle actions (Create, Update, Delete, Rollback), change set
|
|
2932
|
+
# creation, nested stack creation, and automatic rollbacks triggered by
|
|
2933
|
+
# failures. Each operation has a unique identifier (Operation ID) and
|
|
2934
|
+
# represents a discrete change attempt on the stack.
|
|
2935
|
+
#
|
|
2936
|
+
# Returns different types of events including:
|
|
2937
|
+
#
|
|
2938
|
+
# * **Progress events** - Status updates during stack operation
|
|
2939
|
+
# execution.
|
|
2940
|
+
#
|
|
2941
|
+
# * **Validation errors** - Failures from CloudFormation Early
|
|
2942
|
+
# Validations.
|
|
2943
|
+
#
|
|
2944
|
+
# * **Provisioning errors** - Resource creation and update failures.
|
|
2945
|
+
#
|
|
2946
|
+
# * **Hook invocation errors** - Failures from CloudFormation Hook
|
|
2947
|
+
# during stack operations.
|
|
2948
|
+
#
|
|
2949
|
+
# <note markdown="1"> One of `ChangeSetName`, `OperationId` or `StackName` must be specified
|
|
2950
|
+
# as input.
|
|
2951
|
+
#
|
|
2952
|
+
# </note>
|
|
2953
|
+
#
|
|
2954
|
+
# @option params [String] :stack_name
|
|
2955
|
+
# The name or unique stack ID for which you want to retrieve events.
|
|
2956
|
+
#
|
|
2957
|
+
# @option params [String] :change_set_name
|
|
2958
|
+
# The name or Amazon Resource Name (ARN) of the change set for which you
|
|
2959
|
+
# want to retrieve events.
|
|
2960
|
+
#
|
|
2961
|
+
# @option params [String] :operation_id
|
|
2962
|
+
# The unique identifier of the operation for which you want to retrieve
|
|
2963
|
+
# events.
|
|
2964
|
+
#
|
|
2965
|
+
# @option params [Types::EventFilter] :filters
|
|
2966
|
+
# Filters to apply when retrieving events.
|
|
2967
|
+
#
|
|
2968
|
+
# @option params [String] :next_token
|
|
2969
|
+
# The token for the next set of items to return. (You received this
|
|
2970
|
+
# token from a previous call.)
|
|
2971
|
+
#
|
|
2972
|
+
# @return [Types::DescribeEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2973
|
+
#
|
|
2974
|
+
# * {Types::DescribeEventsOutput#operation_events #operation_events} => Array<Types::OperationEvent>
|
|
2975
|
+
# * {Types::DescribeEventsOutput#next_token #next_token} => String
|
|
2976
|
+
#
|
|
2977
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2978
|
+
#
|
|
2979
|
+
# @example Request syntax with placeholder values
|
|
2980
|
+
#
|
|
2981
|
+
# resp = client.describe_events({
|
|
2982
|
+
# stack_name: "StackNameOrId",
|
|
2983
|
+
# change_set_name: "ChangeSetNameOrId",
|
|
2984
|
+
# operation_id: "OperationId",
|
|
2985
|
+
# filters: {
|
|
2986
|
+
# failed_events: false,
|
|
2987
|
+
# },
|
|
2988
|
+
# next_token: "NextToken",
|
|
2989
|
+
# })
|
|
2990
|
+
#
|
|
2991
|
+
# @example Response structure
|
|
2992
|
+
#
|
|
2993
|
+
# resp.operation_events #=> Array
|
|
2994
|
+
# resp.operation_events[0].event_id #=> String
|
|
2995
|
+
# resp.operation_events[0].stack_id #=> String
|
|
2996
|
+
# resp.operation_events[0].operation_id #=> String
|
|
2997
|
+
# resp.operation_events[0].operation_type #=> String, one of "CREATE_STACK", "UPDATE_STACK", "DELETE_STACK", "CONTINUE_ROLLBACK", "ROLLBACK", "CREATE_CHANGESET"
|
|
2998
|
+
# resp.operation_events[0].operation_status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED"
|
|
2999
|
+
# resp.operation_events[0].event_type #=> String, one of "STACK_EVENT", "PROGRESS_EVENT", "VALIDATION_ERROR", "PROVISIONING_ERROR", "HOOK_INVOCATION_ERROR"
|
|
3000
|
+
# resp.operation_events[0].logical_resource_id #=> String
|
|
3001
|
+
# resp.operation_events[0].physical_resource_id #=> String
|
|
3002
|
+
# resp.operation_events[0].resource_type #=> String
|
|
3003
|
+
# resp.operation_events[0].timestamp #=> Time
|
|
3004
|
+
# resp.operation_events[0].start_time #=> Time
|
|
3005
|
+
# resp.operation_events[0].end_time #=> Time
|
|
3006
|
+
# 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"
|
|
3007
|
+
# resp.operation_events[0].resource_status_reason #=> String
|
|
3008
|
+
# resp.operation_events[0].resource_properties #=> String
|
|
3009
|
+
# resp.operation_events[0].client_request_token #=> String
|
|
3010
|
+
# resp.operation_events[0].hook_type #=> String
|
|
3011
|
+
# resp.operation_events[0].hook_status #=> String, one of "HOOK_IN_PROGRESS", "HOOK_COMPLETE_SUCCEEDED", "HOOK_COMPLETE_FAILED", "HOOK_FAILED"
|
|
3012
|
+
# resp.operation_events[0].hook_status_reason #=> String
|
|
3013
|
+
# resp.operation_events[0].hook_invocation_point #=> String, one of "PRE_PROVISION"
|
|
3014
|
+
# resp.operation_events[0].hook_failure_mode #=> String, one of "FAIL", "WARN"
|
|
3015
|
+
# resp.operation_events[0].detailed_status #=> String, one of "CONFIGURATION_COMPLETE", "VALIDATION_FAILED"
|
|
3016
|
+
# resp.operation_events[0].validation_failure_mode #=> String, one of "FAIL", "WARN"
|
|
3017
|
+
# resp.operation_events[0].validation_name #=> String
|
|
3018
|
+
# resp.operation_events[0].validation_status #=> String, one of "FAILED", "SKIPPED"
|
|
3019
|
+
# resp.operation_events[0].validation_status_reason #=> String
|
|
3020
|
+
# resp.operation_events[0].validation_path #=> String
|
|
3021
|
+
# resp.next_token #=> String
|
|
3022
|
+
#
|
|
3023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeEvents AWS API Documentation
|
|
3024
|
+
#
|
|
3025
|
+
# @overload describe_events(params = {})
|
|
3026
|
+
# @param [Hash] params ({})
|
|
3027
|
+
def describe_events(params = {}, options = {})
|
|
3028
|
+
req = build_request(:describe_events, params)
|
|
3029
|
+
req.send_request(options)
|
|
3030
|
+
end
|
|
3031
|
+
|
|
2889
3032
|
# Describes a generated template. The output includes details about the
|
|
2890
3033
|
# progress of the creation of a generated template started by a
|
|
2891
3034
|
# `CreateGeneratedTemplate` API action or the update of a generated
|
|
@@ -3342,6 +3485,7 @@ module Aws::CloudFormation
|
|
|
3342
3485
|
# resp.stack_events[0].stack_id #=> String
|
|
3343
3486
|
# resp.stack_events[0].event_id #=> String
|
|
3344
3487
|
# resp.stack_events[0].stack_name #=> String
|
|
3488
|
+
# resp.stack_events[0].operation_id #=> String
|
|
3345
3489
|
# resp.stack_events[0].logical_resource_id #=> String
|
|
3346
3490
|
# resp.stack_events[0].physical_resource_id #=> String
|
|
3347
3491
|
# resp.stack_events[0].resource_type #=> String
|
|
@@ -3537,7 +3681,7 @@ module Aws::CloudFormation
|
|
|
3537
3681
|
# resp.stack_resource_detail.resource_status_reason #=> String
|
|
3538
3682
|
# resp.stack_resource_detail.description #=> String
|
|
3539
3683
|
# 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"
|
|
3684
|
+
# resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
3541
3685
|
# resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
|
|
3542
3686
|
# resp.stack_resource_detail.module_info.type_hierarchy #=> String
|
|
3543
3687
|
# resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
|
|
@@ -3613,7 +3757,7 @@ module Aws::CloudFormation
|
|
|
3613
3757
|
#
|
|
3614
3758
|
# resp = client.describe_stack_resource_drifts({
|
|
3615
3759
|
# stack_name: "StackNameOrId", # required
|
|
3616
|
-
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
|
|
3760
|
+
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN, UNSUPPORTED
|
|
3617
3761
|
# next_token: "NextToken",
|
|
3618
3762
|
# max_results: 1,
|
|
3619
3763
|
# })
|
|
@@ -3635,7 +3779,7 @@ module Aws::CloudFormation
|
|
|
3635
3779
|
# resp.stack_resource_drifts[0].property_differences[0].expected_value #=> String
|
|
3636
3780
|
# resp.stack_resource_drifts[0].property_differences[0].actual_value #=> String
|
|
3637
3781
|
# 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"
|
|
3782
|
+
# resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
3639
3783
|
# resp.stack_resource_drifts[0].timestamp #=> Time
|
|
3640
3784
|
# resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
|
|
3641
3785
|
# resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
|
|
@@ -3731,7 +3875,7 @@ module Aws::CloudFormation
|
|
|
3731
3875
|
# 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
3876
|
# resp.stack_resources[0].resource_status_reason #=> String
|
|
3733
3877
|
# 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"
|
|
3878
|
+
# resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
3735
3879
|
# resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
|
|
3736
3880
|
# resp.stack_resources[0].module_info.type_hierarchy #=> String
|
|
3737
3881
|
# resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
|
|
@@ -4030,6 +4174,9 @@ module Aws::CloudFormation
|
|
|
4030
4174
|
# resp.stacks[0].retain_except_on_create #=> Boolean
|
|
4031
4175
|
# resp.stacks[0].deletion_mode #=> String, one of "STANDARD", "FORCE_DELETE_STACK"
|
|
4032
4176
|
# resp.stacks[0].detailed_status #=> String, one of "CONFIGURATION_COMPLETE", "VALIDATION_FAILED"
|
|
4177
|
+
# resp.stacks[0].last_operations #=> Array
|
|
4178
|
+
# resp.stacks[0].last_operations[0].operation_type #=> String, one of "CREATE_STACK", "UPDATE_STACK", "DELETE_STACK", "CONTINUE_ROLLBACK", "ROLLBACK", "CREATE_CHANGESET"
|
|
4179
|
+
# resp.stacks[0].last_operations[0].operation_id #=> String
|
|
4033
4180
|
# resp.next_token #=> String
|
|
4034
4181
|
#
|
|
4035
4182
|
#
|
|
@@ -4356,7 +4503,7 @@ module Aws::CloudFormation
|
|
|
4356
4503
|
# resp.stack_resource_drift.property_differences[0].expected_value #=> String
|
|
4357
4504
|
# resp.stack_resource_drift.property_differences[0].actual_value #=> String
|
|
4358
4505
|
# 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"
|
|
4506
|
+
# resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
4360
4507
|
# resp.stack_resource_drift.timestamp #=> Time
|
|
4361
4508
|
# resp.stack_resource_drift.module_info.type_hierarchy #=> String
|
|
4362
4509
|
# resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
|
|
@@ -4726,6 +4873,16 @@ module Aws::CloudFormation
|
|
|
4726
4873
|
# Retrieves detailed information and remediation guidance for a Hook
|
|
4727
4874
|
# invocation result.
|
|
4728
4875
|
#
|
|
4876
|
+
# If the Hook uses a KMS key to encrypt annotations, callers of the
|
|
4877
|
+
# `GetHookResult` operation must have `kms:Decrypt` permissions. For
|
|
4878
|
+
# more information, see [KMS key policy and permissions for encrypting
|
|
4879
|
+
# CloudFormation Hooks results at rest][1] in the *CloudFormation Hooks
|
|
4880
|
+
# User Guide*.
|
|
4881
|
+
#
|
|
4882
|
+
#
|
|
4883
|
+
#
|
|
4884
|
+
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/hooks-kms-key-policy.html
|
|
4885
|
+
#
|
|
4729
4886
|
# @option params [String] :hook_result_id
|
|
4730
4887
|
# The unique identifier (ID) of the Hook invocation result that you want
|
|
4731
4888
|
# details about. You can get the ID from the [ListHookResults][1]
|
|
@@ -5863,7 +6020,7 @@ module Aws::CloudFormation
|
|
|
5863
6020
|
# stack_set_name: "StackSetNameOrId", # required
|
|
5864
6021
|
# next_token: "NextToken",
|
|
5865
6022
|
# max_results: 1,
|
|
5866
|
-
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN
|
|
6023
|
+
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED, UNKNOWN, UNSUPPORTED
|
|
5867
6024
|
# stack_instance_account: "Account", # required
|
|
5868
6025
|
# stack_instance_region: "Region", # required
|
|
5869
6026
|
# operation_id: "ClientRequestToken", # required
|
|
@@ -5885,7 +6042,7 @@ module Aws::CloudFormation
|
|
|
5885
6042
|
# resp.summaries[0].property_differences[0].expected_value #=> String
|
|
5886
6043
|
# resp.summaries[0].property_differences[0].actual_value #=> String
|
|
5887
6044
|
# 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"
|
|
6045
|
+
# resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
5889
6046
|
# resp.summaries[0].timestamp #=> Time
|
|
5890
6047
|
# resp.next_token #=> String
|
|
5891
6048
|
#
|
|
@@ -6153,7 +6310,7 @@ module Aws::CloudFormation
|
|
|
6153
6310
|
# resp.stack_resource_summaries[0].last_updated_timestamp #=> Time
|
|
6154
6311
|
# 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
6312
|
# 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"
|
|
6313
|
+
# resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED", "UNKNOWN", "UNSUPPORTED"
|
|
6157
6314
|
# resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
|
|
6158
6315
|
# resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
|
|
6159
6316
|
# resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
|
|
@@ -6562,6 +6719,9 @@ module Aws::CloudFormation
|
|
|
6562
6719
|
# resp.stack_summaries[0].root_id #=> String
|
|
6563
6720
|
# resp.stack_summaries[0].drift_information.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
|
6564
6721
|
# resp.stack_summaries[0].drift_information.last_check_timestamp #=> Time
|
|
6722
|
+
# resp.stack_summaries[0].last_operations #=> Array
|
|
6723
|
+
# resp.stack_summaries[0].last_operations[0].operation_type #=> String, one of "CREATE_STACK", "UPDATE_STACK", "DELETE_STACK", "CONTINUE_ROLLBACK", "ROLLBACK", "CREATE_CHANGESET"
|
|
6724
|
+
# resp.stack_summaries[0].last_operations[0].operation_id #=> String
|
|
6565
6725
|
# resp.next_token #=> String
|
|
6566
6726
|
#
|
|
6567
6727
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks AWS API Documentation
|
|
@@ -7277,6 +7437,7 @@ module Aws::CloudFormation
|
|
|
7277
7437
|
# @return [Types::RollbackStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7278
7438
|
#
|
|
7279
7439
|
# * {Types::RollbackStackOutput#stack_id #stack_id} => String
|
|
7440
|
+
# * {Types::RollbackStackOutput#operation_id #operation_id} => String
|
|
7280
7441
|
#
|
|
7281
7442
|
# @example Request syntax with placeholder values
|
|
7282
7443
|
#
|
|
@@ -7290,6 +7451,7 @@ module Aws::CloudFormation
|
|
|
7290
7451
|
# @example Response structure
|
|
7291
7452
|
#
|
|
7292
7453
|
# resp.stack_id #=> String
|
|
7454
|
+
# resp.operation_id #=> String
|
|
7293
7455
|
#
|
|
7294
7456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStack AWS API Documentation
|
|
7295
7457
|
#
|
|
@@ -8178,6 +8340,7 @@ module Aws::CloudFormation
|
|
|
8178
8340
|
# @return [Types::UpdateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8179
8341
|
#
|
|
8180
8342
|
# * {Types::UpdateStackOutput#stack_id #stack_id} => String
|
|
8343
|
+
# * {Types::UpdateStackOutput#operation_id #operation_id} => String
|
|
8181
8344
|
#
|
|
8182
8345
|
# @example Request syntax with placeholder values
|
|
8183
8346
|
#
|
|
@@ -8225,6 +8388,7 @@ module Aws::CloudFormation
|
|
|
8225
8388
|
# @example Response structure
|
|
8226
8389
|
#
|
|
8227
8390
|
# resp.stack_id #=> String
|
|
8391
|
+
# resp.operation_id #=> String
|
|
8228
8392
|
#
|
|
8229
8393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack AWS API Documentation
|
|
8230
8394
|
#
|
|
@@ -8955,7 +9119,7 @@ module Aws::CloudFormation
|
|
|
8955
9119
|
tracer: tracer
|
|
8956
9120
|
)
|
|
8957
9121
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
8958
|
-
context[:gem_version] = '1.
|
|
9122
|
+
context[:gem_version] = '1.145.0'
|
|
8959
9123
|
Seahorse::Client::Request.new(handlers, context)
|
|
8960
9124
|
end
|
|
8961
9125
|
|