aws-sdk-cloudformation 1.143.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +345 -131
- data/lib/aws-sdk-cloudformation/client_api.rb +178 -1
- data/lib/aws-sdk-cloudformation/event.rb +7 -0
- data/lib/aws-sdk-cloudformation/resource.rb +4 -11
- data/lib/aws-sdk-cloudformation/stack.rb +24 -16
- data/lib/aws-sdk-cloudformation/types.rb +745 -144
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +50 -5
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +135 -10
- metadata +1 -1
|
@@ -896,7 +896,9 @@ module Aws::CloudFormation
|
|
|
896
896
|
# CloudFormation generates the change set by comparing this template
|
|
897
897
|
# with the template of the stack that you specified.
|
|
898
898
|
#
|
|
899
|
-
# Conditional: You must specify only
|
|
899
|
+
# Conditional: You must specify only one of the following parameters:
|
|
900
|
+
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
901
|
+
# `true`.
|
|
900
902
|
#
|
|
901
903
|
# @option params [String] :template_url
|
|
902
904
|
# The URL of the file that contains the revised template. The URL must
|
|
@@ -906,12 +908,28 @@ module Aws::CloudFormation
|
|
|
906
908
|
# specified. The location for an Amazon S3 bucket must start with
|
|
907
909
|
# `https://`. URLs from S3 static websites are not supported.
|
|
908
910
|
#
|
|
909
|
-
# Conditional: You must specify only
|
|
911
|
+
# Conditional: You must specify only one of the following parameters:
|
|
912
|
+
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
913
|
+
# `true`.
|
|
910
914
|
#
|
|
911
915
|
# @option params [Boolean] :use_previous_template
|
|
912
916
|
# Whether to reuse the template that's associated with the stack to
|
|
913
917
|
# create the change set.
|
|
914
918
|
#
|
|
919
|
+
# When using templates with the `AWS::LanguageExtensions` transform,
|
|
920
|
+
# provide the template instead of using `UsePreviousTemplate` to ensure
|
|
921
|
+
# new parameter values and Systems Manager parameter updates are applied
|
|
922
|
+
# correctly. For more information, see [AWS::LanguageExtensions
|
|
923
|
+
# transform][1].
|
|
924
|
+
#
|
|
925
|
+
# Conditional: You must specify only one of the following parameters:
|
|
926
|
+
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
927
|
+
# `true`.
|
|
928
|
+
#
|
|
929
|
+
#
|
|
930
|
+
#
|
|
931
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/transform-aws-languageextensions.html
|
|
932
|
+
#
|
|
915
933
|
# @option params [Array<Types::Parameter>] :parameters
|
|
916
934
|
# A list of `Parameter` structures that specify input parameters for the
|
|
917
935
|
# change set. For more information, see the Parameter data type.
|
|
@@ -924,7 +942,7 @@ module Aws::CloudFormation
|
|
|
924
942
|
# * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
|
|
925
943
|
#
|
|
926
944
|
# Some stack templates might include resources that can affect
|
|
927
|
-
# permissions in your Amazon Web Services account
|
|
945
|
+
# permissions in your Amazon Web Services account, for example, by
|
|
928
946
|
# creating new IAM users. For those stacks, you must explicitly
|
|
929
947
|
# acknowledge this by specifying one of these capabilities.
|
|
930
948
|
#
|
|
@@ -1009,16 +1027,15 @@ module Aws::CloudFormation
|
|
|
1009
1027
|
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
1010
1028
|
#
|
|
1011
1029
|
# @option params [Array<String>] :resource_types
|
|
1012
|
-
#
|
|
1013
|
-
#
|
|
1014
|
-
# `AWS::EC2::*`, or `Custom::MyCustomInstance`.
|
|
1030
|
+
# Specifies which resource types you can work with, such as
|
|
1031
|
+
# `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
|
|
1015
1032
|
#
|
|
1016
1033
|
# If the list of resource types doesn't include a resource type that
|
|
1017
1034
|
# you're updating, the stack update fails. By default, CloudFormation
|
|
1018
1035
|
# grants permissions to all resource types. IAM uses this parameter for
|
|
1019
1036
|
# condition keys in IAM policies for CloudFormation. For more
|
|
1020
|
-
# information, see [Control access with Identity and
|
|
1021
|
-
# Management][1] in the *CloudFormation User Guide*.
|
|
1037
|
+
# information, see [Control CloudFormation access with Identity and
|
|
1038
|
+
# Access Management][1] in the *CloudFormation User Guide*.
|
|
1022
1039
|
#
|
|
1023
1040
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
|
1024
1041
|
# specified.
|
|
@@ -1146,6 +1163,24 @@ module Aws::CloudFormation
|
|
|
1146
1163
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/import-resources-automatically.html
|
|
1147
1164
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-name.html
|
|
1148
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
|
+
#
|
|
1149
1184
|
# @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1150
1185
|
#
|
|
1151
1186
|
# * {Types::CreateChangeSetOutput#id #id} => String
|
|
@@ -1201,6 +1236,7 @@ module Aws::CloudFormation
|
|
|
1201
1236
|
# include_nested_stacks: false,
|
|
1202
1237
|
# on_stack_failure: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK, DELETE
|
|
1203
1238
|
# import_existing_resources: false,
|
|
1239
|
+
# deployment_mode: "REVERT_DRIFT", # accepts REVERT_DRIFT
|
|
1204
1240
|
# })
|
|
1205
1241
|
#
|
|
1206
1242
|
# @example Response structure
|
|
@@ -1469,22 +1505,15 @@ module Aws::CloudFormation
|
|
|
1469
1505
|
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
1470
1506
|
#
|
|
1471
1507
|
# @option params [Array<String>] :resource_types
|
|
1472
|
-
#
|
|
1473
|
-
#
|
|
1474
|
-
# or `Custom::MyCustomInstance`. Use the following syntax to describe
|
|
1475
|
-
# template resource types: `AWS::*` (for all Amazon Web Services
|
|
1476
|
-
# resources), `Custom::*` (for all custom resources),
|
|
1477
|
-
# `Custom::logical_ID ` (for a specific custom resource),
|
|
1478
|
-
# `AWS::service_name::*` (for all resources of a particular Amazon Web
|
|
1479
|
-
# Services service), and `AWS::service_name::resource_logical_ID ` (for
|
|
1480
|
-
# a specific Amazon Web Services resource).
|
|
1508
|
+
# Specifies which resource types you can work with, such as
|
|
1509
|
+
# `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
|
|
1481
1510
|
#
|
|
1482
1511
|
# If the list of resource types doesn't include a resource that you're
|
|
1483
1512
|
# creating, the stack creation fails. By default, CloudFormation grants
|
|
1484
1513
|
# permissions to all resource types. IAM uses this parameter for
|
|
1485
1514
|
# CloudFormation-specific condition keys in IAM policies. For more
|
|
1486
|
-
# information, see [Control access with Identity and
|
|
1487
|
-
# Management][1].
|
|
1515
|
+
# information, see [Control CloudFormation access with Identity and
|
|
1516
|
+
# Access Management][1].
|
|
1488
1517
|
#
|
|
1489
1518
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
|
1490
1519
|
# specified.
|
|
@@ -1595,6 +1624,7 @@ module Aws::CloudFormation
|
|
|
1595
1624
|
# @return [Types::CreateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1596
1625
|
#
|
|
1597
1626
|
# * {Types::CreateStackOutput#stack_id #stack_id} => String
|
|
1627
|
+
# * {Types::CreateStackOutput#operation_id #operation_id} => String
|
|
1598
1628
|
#
|
|
1599
1629
|
# @example Request syntax with placeholder values
|
|
1600
1630
|
#
|
|
@@ -1642,6 +1672,7 @@ module Aws::CloudFormation
|
|
|
1642
1672
|
# @example Response structure
|
|
1643
1673
|
#
|
|
1644
1674
|
# resp.stack_id #=> String
|
|
1675
|
+
# resp.operation_id #=> String
|
|
1645
1676
|
#
|
|
1646
1677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack AWS API Documentation
|
|
1647
1678
|
#
|
|
@@ -2645,8 +2676,8 @@ module Aws::CloudFormation
|
|
|
2645
2676
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html
|
|
2646
2677
|
#
|
|
2647
2678
|
# @option params [String] :next_token
|
|
2648
|
-
#
|
|
2649
|
-
#
|
|
2679
|
+
# The token for the next set of items to return. (You received this
|
|
2680
|
+
# token from a previous call.)
|
|
2650
2681
|
#
|
|
2651
2682
|
# @return [Types::DescribeAccountLimitsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2652
2683
|
#
|
|
@@ -2695,8 +2726,8 @@ module Aws::CloudFormation
|
|
|
2695
2726
|
# ID (ARN) of the change set you want to describe.
|
|
2696
2727
|
#
|
|
2697
2728
|
# @option params [String] :next_token
|
|
2698
|
-
#
|
|
2699
|
-
#
|
|
2729
|
+
# The token for the next set of items to return. (You received this
|
|
2730
|
+
# token from a previous call.)
|
|
2700
2731
|
#
|
|
2701
2732
|
# @option params [Boolean] :include_property_values
|
|
2702
2733
|
# If `true`, the returned changes include detailed changes in the
|
|
@@ -2714,6 +2745,7 @@ module Aws::CloudFormation
|
|
|
2714
2745
|
# * {Types::DescribeChangeSetOutput#execution_status #execution_status} => String
|
|
2715
2746
|
# * {Types::DescribeChangeSetOutput#status #status} => String
|
|
2716
2747
|
# * {Types::DescribeChangeSetOutput#status_reason #status_reason} => String
|
|
2748
|
+
# * {Types::DescribeChangeSetOutput#stack_drift_status #stack_drift_status} => String
|
|
2717
2749
|
# * {Types::DescribeChangeSetOutput#notification_arns #notification_arns} => Array<String>
|
|
2718
2750
|
# * {Types::DescribeChangeSetOutput#rollback_configuration #rollback_configuration} => Types::RollbackConfiguration
|
|
2719
2751
|
# * {Types::DescribeChangeSetOutput#capabilities #capabilities} => Array<String>
|
|
@@ -2725,6 +2757,9 @@ module Aws::CloudFormation
|
|
|
2725
2757
|
# * {Types::DescribeChangeSetOutput#root_change_set_id #root_change_set_id} => String
|
|
2726
2758
|
# * {Types::DescribeChangeSetOutput#on_stack_failure #on_stack_failure} => String
|
|
2727
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}.
|
|
2728
2763
|
#
|
|
2729
2764
|
# @example Request syntax with placeholder values
|
|
2730
2765
|
#
|
|
@@ -2751,6 +2786,7 @@ module Aws::CloudFormation
|
|
|
2751
2786
|
# resp.execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
|
|
2752
2787
|
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "FAILED"
|
|
2753
2788
|
# resp.status_reason #=> String
|
|
2789
|
+
# resp.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
|
2754
2790
|
# resp.notification_arns #=> Array
|
|
2755
2791
|
# resp.notification_arns[0] #=> String
|
|
2756
2792
|
# resp.rollback_configuration.rollback_triggers #=> Array
|
|
@@ -2766,13 +2802,17 @@ module Aws::CloudFormation
|
|
|
2766
2802
|
# resp.changes[0].type #=> String, one of "Resource"
|
|
2767
2803
|
# resp.changes[0].hook_invocation_count #=> Integer
|
|
2768
2804
|
# resp.changes[0].resource_change.policy_action #=> String, one of "Delete", "Retain", "Snapshot", "ReplaceAndDelete", "ReplaceAndRetain", "ReplaceAndSnapshot"
|
|
2769
|
-
# 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"
|
|
2770
2806
|
# resp.changes[0].resource_change.logical_resource_id #=> String
|
|
2771
2807
|
# resp.changes[0].resource_change.physical_resource_id #=> String
|
|
2772
2808
|
# resp.changes[0].resource_change.resource_type #=> String
|
|
2773
2809
|
# resp.changes[0].resource_change.replacement #=> String, one of "True", "False", "Conditional"
|
|
2774
2810
|
# resp.changes[0].resource_change.scope #=> Array
|
|
2775
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"
|
|
2776
2816
|
# resp.changes[0].resource_change.details #=> Array
|
|
2777
2817
|
# resp.changes[0].resource_change.details[0].target.attribute #=> String, one of "Properties", "Metadata", "CreationPolicy", "UpdatePolicy", "DeletionPolicy", "UpdateReplacePolicy", "Tags"
|
|
2778
2818
|
# resp.changes[0].resource_change.details[0].target.name #=> String
|
|
@@ -2780,21 +2820,28 @@ module Aws::CloudFormation
|
|
|
2780
2820
|
# resp.changes[0].resource_change.details[0].target.path #=> String
|
|
2781
2821
|
# resp.changes[0].resource_change.details[0].target.before_value #=> String
|
|
2782
2822
|
# resp.changes[0].resource_change.details[0].target.after_value #=> String
|
|
2783
|
-
# 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"
|
|
2784
2829
|
# resp.changes[0].resource_change.details[0].evaluation #=> String, one of "Static", "Dynamic"
|
|
2785
|
-
# 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"
|
|
2786
2831
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
|
2787
2832
|
# resp.changes[0].resource_change.change_set_id #=> String
|
|
2788
2833
|
# resp.changes[0].resource_change.module_info.type_hierarchy #=> String
|
|
2789
2834
|
# resp.changes[0].resource_change.module_info.logical_id_hierarchy #=> String
|
|
2790
2835
|
# resp.changes[0].resource_change.before_context #=> String
|
|
2791
2836
|
# resp.changes[0].resource_change.after_context #=> String
|
|
2837
|
+
# resp.changes[0].resource_change.previous_deployment_context #=> String
|
|
2792
2838
|
# resp.next_token #=> String
|
|
2793
2839
|
# resp.include_nested_stacks #=> Boolean
|
|
2794
2840
|
# resp.parent_change_set_id #=> String
|
|
2795
2841
|
# resp.root_change_set_id #=> String
|
|
2796
2842
|
# resp.on_stack_failure #=> String, one of "DO_NOTHING", "ROLLBACK", "DELETE"
|
|
2797
2843
|
# resp.import_existing_resources #=> Boolean
|
|
2844
|
+
# resp.deployment_mode #=> String, one of "REVERT_DRIFT"
|
|
2798
2845
|
#
|
|
2799
2846
|
#
|
|
2800
2847
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2810,7 +2857,7 @@ module Aws::CloudFormation
|
|
|
2810
2857
|
req.send_request(options)
|
|
2811
2858
|
end
|
|
2812
2859
|
|
|
2813
|
-
# Returns
|
|
2860
|
+
# Returns Hook-related information for the change set and a list of
|
|
2814
2861
|
# changes that CloudFormation makes when you run the change set.
|
|
2815
2862
|
#
|
|
2816
2863
|
# @option params [required, String] :change_set_name
|
|
@@ -2822,9 +2869,8 @@ module Aws::CloudFormation
|
|
|
2822
2869
|
# stack ID (ARN) of the change set you want to describe.
|
|
2823
2870
|
#
|
|
2824
2871
|
# @option params [String] :next_token
|
|
2825
|
-
#
|
|
2826
|
-
#
|
|
2827
|
-
# retrieve.
|
|
2872
|
+
# The token for the next set of items to return. (You received this
|
|
2873
|
+
# token from a previous call.)
|
|
2828
2874
|
#
|
|
2829
2875
|
# @option params [String] :logical_resource_id
|
|
2830
2876
|
# If specified, lists only the Hooks related to the specified
|
|
@@ -2862,7 +2908,7 @@ module Aws::CloudFormation
|
|
|
2862
2908
|
# resp.hooks[0].target_details.target_type #=> String, one of "RESOURCE"
|
|
2863
2909
|
# resp.hooks[0].target_details.resource_target_details.logical_resource_id #=> String
|
|
2864
2910
|
# resp.hooks[0].target_details.resource_target_details.resource_type #=> String
|
|
2865
|
-
# 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"
|
|
2866
2912
|
# resp.status #=> String, one of "PLANNING", "PLANNED", "UNAVAILABLE"
|
|
2867
2913
|
# resp.next_token #=> String
|
|
2868
2914
|
# resp.stack_id #=> String
|
|
@@ -2877,6 +2923,112 @@ module Aws::CloudFormation
|
|
|
2877
2923
|
req.send_request(options)
|
|
2878
2924
|
end
|
|
2879
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
|
+
|
|
2880
3032
|
# Describes a generated template. The output includes details about the
|
|
2881
3033
|
# progress of the creation of a generated template started by a
|
|
2882
3034
|
# `CreateGeneratedTemplate` API action or the update of a generated
|
|
@@ -3300,7 +3452,7 @@ module Aws::CloudFormation
|
|
|
3300
3452
|
#
|
|
3301
3453
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
|
|
3302
3454
|
#
|
|
3303
|
-
# @option params [String] :stack_name
|
|
3455
|
+
# @option params [required, String] :stack_name
|
|
3304
3456
|
# The name or the unique stack ID that's associated with the stack,
|
|
3305
3457
|
# which aren't always interchangeable:
|
|
3306
3458
|
#
|
|
@@ -3310,8 +3462,8 @@ module Aws::CloudFormation
|
|
|
3310
3462
|
# * Deleted stacks: You must specify the unique stack ID.
|
|
3311
3463
|
#
|
|
3312
3464
|
# @option params [String] :next_token
|
|
3313
|
-
#
|
|
3314
|
-
#
|
|
3465
|
+
# The token for the next set of items to return. (You received this
|
|
3466
|
+
# token from a previous call.)
|
|
3315
3467
|
#
|
|
3316
3468
|
# @return [Types::DescribeStackEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3317
3469
|
#
|
|
@@ -3323,7 +3475,7 @@ module Aws::CloudFormation
|
|
|
3323
3475
|
# @example Request syntax with placeholder values
|
|
3324
3476
|
#
|
|
3325
3477
|
# resp = client.describe_stack_events({
|
|
3326
|
-
# stack_name: "StackName",
|
|
3478
|
+
# stack_name: "StackName", # required
|
|
3327
3479
|
# next_token: "NextToken",
|
|
3328
3480
|
# })
|
|
3329
3481
|
#
|
|
@@ -3333,6 +3485,7 @@ module Aws::CloudFormation
|
|
|
3333
3485
|
# resp.stack_events[0].stack_id #=> String
|
|
3334
3486
|
# resp.stack_events[0].event_id #=> String
|
|
3335
3487
|
# resp.stack_events[0].stack_name #=> String
|
|
3488
|
+
# resp.stack_events[0].operation_id #=> String
|
|
3336
3489
|
# resp.stack_events[0].logical_resource_id #=> String
|
|
3337
3490
|
# resp.stack_events[0].physical_resource_id #=> String
|
|
3338
3491
|
# resp.stack_events[0].resource_type #=> String
|
|
@@ -3528,7 +3681,7 @@ module Aws::CloudFormation
|
|
|
3528
3681
|
# resp.stack_resource_detail.resource_status_reason #=> String
|
|
3529
3682
|
# resp.stack_resource_detail.description #=> String
|
|
3530
3683
|
# resp.stack_resource_detail.metadata #=> String
|
|
3531
|
-
# 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"
|
|
3532
3685
|
# resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
|
|
3533
3686
|
# resp.stack_resource_detail.module_info.type_hierarchy #=> String
|
|
3534
3687
|
# resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
|
|
@@ -3584,8 +3737,8 @@ module Aws::CloudFormation
|
|
|
3584
3737
|
# resource.
|
|
3585
3738
|
#
|
|
3586
3739
|
# @option params [String] :next_token
|
|
3587
|
-
#
|
|
3588
|
-
#
|
|
3740
|
+
# The token for the next set of items to return. (You received this
|
|
3741
|
+
# token from a previous call.)
|
|
3589
3742
|
#
|
|
3590
3743
|
# @option params [Integer] :max_results
|
|
3591
3744
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -3604,7 +3757,7 @@ module Aws::CloudFormation
|
|
|
3604
3757
|
#
|
|
3605
3758
|
# resp = client.describe_stack_resource_drifts({
|
|
3606
3759
|
# stack_name: "StackNameOrId", # required
|
|
3607
|
-
# 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
|
|
3608
3761
|
# next_token: "NextToken",
|
|
3609
3762
|
# max_results: 1,
|
|
3610
3763
|
# })
|
|
@@ -3626,7 +3779,7 @@ module Aws::CloudFormation
|
|
|
3626
3779
|
# resp.stack_resource_drifts[0].property_differences[0].expected_value #=> String
|
|
3627
3780
|
# resp.stack_resource_drifts[0].property_differences[0].actual_value #=> String
|
|
3628
3781
|
# resp.stack_resource_drifts[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
|
3629
|
-
# 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"
|
|
3630
3783
|
# resp.stack_resource_drifts[0].timestamp #=> Time
|
|
3631
3784
|
# resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
|
|
3632
3785
|
# resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
|
|
@@ -3722,7 +3875,7 @@ module Aws::CloudFormation
|
|
|
3722
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"
|
|
3723
3876
|
# resp.stack_resources[0].resource_status_reason #=> String
|
|
3724
3877
|
# resp.stack_resources[0].description #=> String
|
|
3725
|
-
# 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"
|
|
3726
3879
|
# resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
|
|
3727
3880
|
# resp.stack_resources[0].module_info.type_hierarchy #=> String
|
|
3728
3881
|
# resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
|
|
@@ -3960,8 +4113,8 @@ module Aws::CloudFormation
|
|
|
3960
4113
|
# * Deleted stacks: You must specify the unique stack ID.
|
|
3961
4114
|
#
|
|
3962
4115
|
# @option params [String] :next_token
|
|
3963
|
-
#
|
|
3964
|
-
#
|
|
4116
|
+
# The token for the next set of items to return. (You received this
|
|
4117
|
+
# token from a previous call.)
|
|
3965
4118
|
#
|
|
3966
4119
|
# @return [Types::DescribeStacksOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3967
4120
|
#
|
|
@@ -4021,6 +4174,9 @@ module Aws::CloudFormation
|
|
|
4021
4174
|
# resp.stacks[0].retain_except_on_create #=> Boolean
|
|
4022
4175
|
# resp.stacks[0].deletion_mode #=> String, one of "STANDARD", "FORCE_DELETE_STACK"
|
|
4023
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
|
|
4024
4180
|
# resp.next_token #=> String
|
|
4025
4181
|
#
|
|
4026
4182
|
#
|
|
@@ -4347,7 +4503,7 @@ module Aws::CloudFormation
|
|
|
4347
4503
|
# resp.stack_resource_drift.property_differences[0].expected_value #=> String
|
|
4348
4504
|
# resp.stack_resource_drift.property_differences[0].actual_value #=> String
|
|
4349
4505
|
# resp.stack_resource_drift.property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
|
4350
|
-
# 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"
|
|
4351
4507
|
# resp.stack_resource_drift.timestamp #=> Time
|
|
4352
4508
|
# resp.stack_resource_drift.module_info.type_hierarchy #=> String
|
|
4353
4509
|
# resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
|
|
@@ -4714,6 +4870,84 @@ module Aws::CloudFormation
|
|
|
4714
4870
|
req.send_request(options)
|
|
4715
4871
|
end
|
|
4716
4872
|
|
|
4873
|
+
# Retrieves detailed information and remediation guidance for a Hook
|
|
4874
|
+
# invocation result.
|
|
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
|
+
#
|
|
4886
|
+
# @option params [String] :hook_result_id
|
|
4887
|
+
# The unique identifier (ID) of the Hook invocation result that you want
|
|
4888
|
+
# details about. You can get the ID from the [ListHookResults][1]
|
|
4889
|
+
# operation.
|
|
4890
|
+
#
|
|
4891
|
+
#
|
|
4892
|
+
#
|
|
4893
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListHookResults.html
|
|
4894
|
+
#
|
|
4895
|
+
# @return [Types::GetHookResultOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4896
|
+
#
|
|
4897
|
+
# * {Types::GetHookResultOutput#hook_result_id #hook_result_id} => String
|
|
4898
|
+
# * {Types::GetHookResultOutput#invocation_point #invocation_point} => String
|
|
4899
|
+
# * {Types::GetHookResultOutput#failure_mode #failure_mode} => String
|
|
4900
|
+
# * {Types::GetHookResultOutput#type_name #type_name} => String
|
|
4901
|
+
# * {Types::GetHookResultOutput#original_type_name #original_type_name} => String
|
|
4902
|
+
# * {Types::GetHookResultOutput#type_version_id #type_version_id} => String
|
|
4903
|
+
# * {Types::GetHookResultOutput#type_configuration_version_id #type_configuration_version_id} => String
|
|
4904
|
+
# * {Types::GetHookResultOutput#type_arn #type_arn} => String
|
|
4905
|
+
# * {Types::GetHookResultOutput#status #status} => String
|
|
4906
|
+
# * {Types::GetHookResultOutput#hook_status_reason #hook_status_reason} => String
|
|
4907
|
+
# * {Types::GetHookResultOutput#invoked_at #invoked_at} => Time
|
|
4908
|
+
# * {Types::GetHookResultOutput#target #target} => Types::HookTarget
|
|
4909
|
+
# * {Types::GetHookResultOutput#annotations #annotations} => Array<Types::Annotation>
|
|
4910
|
+
#
|
|
4911
|
+
# @example Request syntax with placeholder values
|
|
4912
|
+
#
|
|
4913
|
+
# resp = client.get_hook_result({
|
|
4914
|
+
# hook_result_id: "HookInvocationId",
|
|
4915
|
+
# })
|
|
4916
|
+
#
|
|
4917
|
+
# @example Response structure
|
|
4918
|
+
#
|
|
4919
|
+
# resp.hook_result_id #=> String
|
|
4920
|
+
# resp.invocation_point #=> String, one of "PRE_PROVISION"
|
|
4921
|
+
# resp.failure_mode #=> String, one of "FAIL", "WARN"
|
|
4922
|
+
# resp.type_name #=> String
|
|
4923
|
+
# resp.original_type_name #=> String
|
|
4924
|
+
# resp.type_version_id #=> String
|
|
4925
|
+
# resp.type_configuration_version_id #=> String
|
|
4926
|
+
# resp.type_arn #=> String
|
|
4927
|
+
# resp.status #=> String, one of "HOOK_IN_PROGRESS", "HOOK_COMPLETE_SUCCEEDED", "HOOK_COMPLETE_FAILED", "HOOK_FAILED"
|
|
4928
|
+
# resp.hook_status_reason #=> String
|
|
4929
|
+
# resp.invoked_at #=> Time
|
|
4930
|
+
# resp.target.target_type #=> String, one of "RESOURCE"
|
|
4931
|
+
# resp.target.target_type_name #=> String
|
|
4932
|
+
# resp.target.target_id #=> String
|
|
4933
|
+
# resp.target.action #=> String, one of "CREATE", "UPDATE", "DELETE", "IMPORT"
|
|
4934
|
+
# resp.annotations #=> Array
|
|
4935
|
+
# resp.annotations[0].annotation_name #=> String
|
|
4936
|
+
# resp.annotations[0].status #=> String, one of "PASSED", "FAILED", "SKIPPED"
|
|
4937
|
+
# resp.annotations[0].status_message #=> String
|
|
4938
|
+
# resp.annotations[0].remediation_message #=> String
|
|
4939
|
+
# resp.annotations[0].remediation_link #=> String
|
|
4940
|
+
# resp.annotations[0].severity_level #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL"
|
|
4941
|
+
#
|
|
4942
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetHookResult AWS API Documentation
|
|
4943
|
+
#
|
|
4944
|
+
# @overload get_hook_result(params = {})
|
|
4945
|
+
# @param [Hash] params ({})
|
|
4946
|
+
def get_hook_result(params = {}, options = {})
|
|
4947
|
+
req = build_request(:get_hook_result, params)
|
|
4948
|
+
req.send_request(options)
|
|
4949
|
+
end
|
|
4950
|
+
|
|
4717
4951
|
# Returns the stack policy for a specified stack. If a stack doesn't
|
|
4718
4952
|
# have a policy, a null value is returned.
|
|
4719
4953
|
#
|
|
@@ -5036,8 +5270,8 @@ module Aws::CloudFormation
|
|
|
5036
5270
|
# want to list change sets.
|
|
5037
5271
|
#
|
|
5038
5272
|
# @option params [String] :next_token
|
|
5039
|
-
#
|
|
5040
|
-
#
|
|
5273
|
+
# The token for the next set of items to return. (You received this
|
|
5274
|
+
# token from a previous call.)
|
|
5041
5275
|
#
|
|
5042
5276
|
# @return [Types::ListChangeSetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5043
5277
|
#
|
|
@@ -5094,8 +5328,8 @@ module Aws::CloudFormation
|
|
|
5094
5328
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html
|
|
5095
5329
|
#
|
|
5096
5330
|
# @option params [String] :next_token
|
|
5097
|
-
#
|
|
5098
|
-
#
|
|
5331
|
+
# The token for the next set of items to return. (You received this
|
|
5332
|
+
# token from a previous call.)
|
|
5099
5333
|
#
|
|
5100
5334
|
# @return [Types::ListExportsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5101
5335
|
#
|
|
@@ -5130,7 +5364,8 @@ module Aws::CloudFormation
|
|
|
5130
5364
|
# Lists your generated templates in this Region.
|
|
5131
5365
|
#
|
|
5132
5366
|
# @option params [String] :next_token
|
|
5133
|
-
#
|
|
5367
|
+
# The token for the next set of items to return. (You received this
|
|
5368
|
+
# token from a previous call.)
|
|
5134
5369
|
#
|
|
5135
5370
|
# @option params [Integer] :max_results
|
|
5136
5371
|
# If the number of available results exceeds this maximum, the response
|
|
@@ -5273,8 +5508,8 @@ module Aws::CloudFormation
|
|
|
5273
5508
|
# * `HOOK_FAILED`: The Hook encountered an error during execution.
|
|
5274
5509
|
#
|
|
5275
5510
|
# @option params [String] :next_token
|
|
5276
|
-
#
|
|
5277
|
-
#
|
|
5511
|
+
# The token for the next set of items to return. (You received this
|
|
5512
|
+
# token from a previous call.)
|
|
5278
5513
|
#
|
|
5279
5514
|
# @return [Types::ListHookResultsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5280
5515
|
#
|
|
@@ -5339,9 +5574,8 @@ module Aws::CloudFormation
|
|
|
5339
5574
|
# stack names that are importing this value.
|
|
5340
5575
|
#
|
|
5341
5576
|
# @option params [String] :next_token
|
|
5342
|
-
#
|
|
5343
|
-
#
|
|
5344
|
-
# output value.
|
|
5577
|
+
# The token for the next set of items to return. (You received this
|
|
5578
|
+
# token from a previous call.)
|
|
5345
5579
|
#
|
|
5346
5580
|
# @return [Types::ListImportsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5347
5581
|
#
|
|
@@ -5384,7 +5618,8 @@ module Aws::CloudFormation
|
|
|
5384
5618
|
# Up to 100 resources can be provided.
|
|
5385
5619
|
#
|
|
5386
5620
|
# @option params [String] :next_token
|
|
5387
|
-
#
|
|
5621
|
+
# The token for the next set of items to return. (You received this
|
|
5622
|
+
# token from a previous call.)
|
|
5388
5623
|
#
|
|
5389
5624
|
# @option params [Integer] :max_results
|
|
5390
5625
|
# If the number of available results exceeds this maximum, the response
|
|
@@ -5518,7 +5753,8 @@ module Aws::CloudFormation
|
|
|
5518
5753
|
# If specified, the returned resources will have a matching tag value.
|
|
5519
5754
|
#
|
|
5520
5755
|
# @option params [String] :next_token
|
|
5521
|
-
#
|
|
5756
|
+
# The token for the next set of items to return. (You received this
|
|
5757
|
+
# token from a previous call.)
|
|
5522
5758
|
#
|
|
5523
5759
|
# @option params [Integer] :max_results
|
|
5524
5760
|
# If the number of available results exceeds this maximum, the response
|
|
@@ -5629,7 +5865,8 @@ module Aws::CloudFormation
|
|
|
5629
5865
|
# return up to 10 resource scans.
|
|
5630
5866
|
#
|
|
5631
5867
|
# @option params [String] :next_token
|
|
5632
|
-
#
|
|
5868
|
+
# The token for the next set of items to return. (You received this
|
|
5869
|
+
# token from a previous call.)
|
|
5633
5870
|
#
|
|
5634
5871
|
# @option params [Integer] :max_results
|
|
5635
5872
|
# If the number of available results exceeds this maximum, the response
|
|
@@ -5717,12 +5954,8 @@ module Aws::CloudFormation
|
|
|
5717
5954
|
# resources for.
|
|
5718
5955
|
#
|
|
5719
5956
|
# @option params [String] :next_token
|
|
5720
|
-
#
|
|
5721
|
-
#
|
|
5722
|
-
# a token. To retrieve the next set of results, call this action again
|
|
5723
|
-
# and assign that token to the request object's `NextToken` parameter.
|
|
5724
|
-
# If there are no remaining results, the previous response object's
|
|
5725
|
-
# `NextToken` parameter is set to `null`.
|
|
5957
|
+
# The token for the next set of items to return. (You received this
|
|
5958
|
+
# token from a previous call.)
|
|
5726
5959
|
#
|
|
5727
5960
|
# @option params [Integer] :max_results
|
|
5728
5961
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -5787,7 +6020,7 @@ module Aws::CloudFormation
|
|
|
5787
6020
|
# stack_set_name: "StackSetNameOrId", # required
|
|
5788
6021
|
# next_token: "NextToken",
|
|
5789
6022
|
# max_results: 1,
|
|
5790
|
-
# 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
|
|
5791
6024
|
# stack_instance_account: "Account", # required
|
|
5792
6025
|
# stack_instance_region: "Region", # required
|
|
5793
6026
|
# operation_id: "ClientRequestToken", # required
|
|
@@ -5809,7 +6042,7 @@ module Aws::CloudFormation
|
|
|
5809
6042
|
# resp.summaries[0].property_differences[0].expected_value #=> String
|
|
5810
6043
|
# resp.summaries[0].property_differences[0].actual_value #=> String
|
|
5811
6044
|
# resp.summaries[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
|
5812
|
-
# 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"
|
|
5813
6046
|
# resp.summaries[0].timestamp #=> Time
|
|
5814
6047
|
# resp.next_token #=> String
|
|
5815
6048
|
#
|
|
@@ -5832,12 +6065,8 @@ module Aws::CloudFormation
|
|
|
5832
6065
|
# instances for.
|
|
5833
6066
|
#
|
|
5834
6067
|
# @option params [String] :next_token
|
|
5835
|
-
#
|
|
5836
|
-
#
|
|
5837
|
-
# the next set of results, call `ListStackInstances` again and assign
|
|
5838
|
-
# that token to the request object's `NextToken` parameter. If there
|
|
5839
|
-
# are no remaining results, the previous response object's `NextToken`
|
|
5840
|
-
# parameter is set to `null`.
|
|
6068
|
+
# The token for the next set of items to return. (You received this
|
|
6069
|
+
# token from a previous call.)
|
|
5841
6070
|
#
|
|
5842
6071
|
# @option params [Integer] :max_results
|
|
5843
6072
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -5934,11 +6163,8 @@ module Aws::CloudFormation
|
|
|
5934
6163
|
# CreateStackRefactor action.
|
|
5935
6164
|
#
|
|
5936
6165
|
# @option params [String] :next_token
|
|
5937
|
-
#
|
|
5938
|
-
#
|
|
5939
|
-
# action again and assign that token to the request object's
|
|
5940
|
-
# `NextToken` parameter. If the request returns all results, `NextToken`
|
|
5941
|
-
# is set to `null`.
|
|
6166
|
+
# The token for the next set of items to return. (You received this
|
|
6167
|
+
# token from a previous call.)
|
|
5942
6168
|
#
|
|
5943
6169
|
# @option params [Integer] :max_results
|
|
5944
6170
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -5999,11 +6225,8 @@ module Aws::CloudFormation
|
|
|
5999
6225
|
# status codes.
|
|
6000
6226
|
#
|
|
6001
6227
|
# @option params [String] :next_token
|
|
6002
|
-
#
|
|
6003
|
-
#
|
|
6004
|
-
# action again and assign that token to the request object's
|
|
6005
|
-
# `NextToken` parameter. If the request returns all results, `NextToken`
|
|
6006
|
-
# is set to `null`.
|
|
6228
|
+
# The token for the next set of items to return. (You received this
|
|
6229
|
+
# token from a previous call.)
|
|
6007
6230
|
#
|
|
6008
6231
|
# @option params [Integer] :max_results
|
|
6009
6232
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -6061,8 +6284,8 @@ module Aws::CloudFormation
|
|
|
6061
6284
|
# * Deleted stacks: You must specify the unique stack ID.
|
|
6062
6285
|
#
|
|
6063
6286
|
# @option params [String] :next_token
|
|
6064
|
-
#
|
|
6065
|
-
#
|
|
6287
|
+
# The token for the next set of items to return. (You received this
|
|
6288
|
+
# token from a previous call.)
|
|
6066
6289
|
#
|
|
6067
6290
|
# @return [Types::ListStackResourcesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6068
6291
|
#
|
|
@@ -6087,7 +6310,7 @@ module Aws::CloudFormation
|
|
|
6087
6310
|
# resp.stack_resource_summaries[0].last_updated_timestamp #=> Time
|
|
6088
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"
|
|
6089
6312
|
# resp.stack_resource_summaries[0].resource_status_reason #=> String
|
|
6090
|
-
# 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"
|
|
6091
6314
|
# resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
|
|
6092
6315
|
# resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
|
|
6093
6316
|
# resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
|
|
@@ -6109,8 +6332,8 @@ module Aws::CloudFormation
|
|
|
6109
6332
|
# deployment targets for.
|
|
6110
6333
|
#
|
|
6111
6334
|
# @option params [String] :next_token
|
|
6112
|
-
#
|
|
6113
|
-
#
|
|
6335
|
+
# The token for the next set of items to return. (You received this
|
|
6336
|
+
# token from a previous call.)
|
|
6114
6337
|
#
|
|
6115
6338
|
# @option params [Integer] :max_results
|
|
6116
6339
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -6186,12 +6409,8 @@ module Aws::CloudFormation
|
|
|
6186
6409
|
# The ID of the StackSet operation.
|
|
6187
6410
|
#
|
|
6188
6411
|
# @option params [String] :next_token
|
|
6189
|
-
#
|
|
6190
|
-
#
|
|
6191
|
-
# retrieve the next set of results, call `ListStackSetOperationResults`
|
|
6192
|
-
# again and assign that token to the request object's `NextToken`
|
|
6193
|
-
# parameter. If there are no remaining results, the previous response
|
|
6194
|
-
# object's `NextToken` parameter is set to `null`.
|
|
6412
|
+
# The token for the next set of items to return. (You received this
|
|
6413
|
+
# token from a previous call.)
|
|
6195
6414
|
#
|
|
6196
6415
|
# @option params [Integer] :max_results
|
|
6197
6416
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -6280,13 +6499,8 @@ module Aws::CloudFormation
|
|
|
6280
6499
|
# summaries for.
|
|
6281
6500
|
#
|
|
6282
6501
|
# @option params [String] :next_token
|
|
6283
|
-
#
|
|
6284
|
-
#
|
|
6285
|
-
# a token. To retrieve the next set of results, call
|
|
6286
|
-
# `ListStackSetOperations` again and assign that token to the request
|
|
6287
|
-
# object's `NextToken` parameter. If there are no remaining results,
|
|
6288
|
-
# the previous response object's `NextToken` parameter is set to
|
|
6289
|
-
# `null`.
|
|
6502
|
+
# The token for the next set of items to return. (You received this
|
|
6503
|
+
# token from a previous call.)
|
|
6290
6504
|
#
|
|
6291
6505
|
# @option params [Integer] :max_results
|
|
6292
6506
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -6384,12 +6598,8 @@ module Aws::CloudFormation
|
|
|
6384
6598
|
# permissions in the management account.
|
|
6385
6599
|
#
|
|
6386
6600
|
# @option params [String] :next_token
|
|
6387
|
-
#
|
|
6388
|
-
#
|
|
6389
|
-
# a token. To retrieve the next set of results, call `ListStackSets`
|
|
6390
|
-
# again and assign that token to the request object's `NextToken`
|
|
6391
|
-
# parameter. If there are no remaining results, the previous response
|
|
6392
|
-
# object's `NextToken` parameter is set to `null`.
|
|
6601
|
+
# The token for the next set of items to return. (You received this
|
|
6602
|
+
# token from a previous call.)
|
|
6393
6603
|
#
|
|
6394
6604
|
# @option params [Integer] :max_results
|
|
6395
6605
|
# The maximum number of results to be returned with a single call. If
|
|
@@ -6471,8 +6681,8 @@ module Aws::CloudFormation
|
|
|
6471
6681
|
# been deleted).
|
|
6472
6682
|
#
|
|
6473
6683
|
# @option params [String] :next_token
|
|
6474
|
-
#
|
|
6475
|
-
#
|
|
6684
|
+
# The token for the next set of items to return. (You received this
|
|
6685
|
+
# token from a previous call.)
|
|
6476
6686
|
#
|
|
6477
6687
|
# @option params [Array<String>] :stack_status_filter
|
|
6478
6688
|
# Stack status to use as a filter. Specify one or more stack status
|
|
@@ -6509,6 +6719,9 @@ module Aws::CloudFormation
|
|
|
6509
6719
|
# resp.stack_summaries[0].root_id #=> String
|
|
6510
6720
|
# resp.stack_summaries[0].drift_information.stack_drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
|
6511
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
|
|
6512
6725
|
# resp.next_token #=> String
|
|
6513
6726
|
#
|
|
6514
6727
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks AWS API Documentation
|
|
@@ -6549,12 +6762,8 @@ module Aws::CloudFormation
|
|
|
6549
6762
|
# request parameter to get the next set of results.
|
|
6550
6763
|
#
|
|
6551
6764
|
# @option params [String] :next_token
|
|
6552
|
-
#
|
|
6553
|
-
#
|
|
6554
|
-
# a token. To retrieve the next set of results, call this action again
|
|
6555
|
-
# and assign that token to the request object's `NextToken` parameter.
|
|
6556
|
-
# If there are no remaining results, the previous response object's
|
|
6557
|
-
# `NextToken` parameter is set to `null`.
|
|
6765
|
+
# The token for the next set of items to return. (You received this
|
|
6766
|
+
# token from a previous call.)
|
|
6558
6767
|
#
|
|
6559
6768
|
# @return [Types::ListTypeRegistrationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6560
6769
|
#
|
|
@@ -6615,12 +6824,8 @@ module Aws::CloudFormation
|
|
|
6615
6824
|
# request parameter to get the next set of results.
|
|
6616
6825
|
#
|
|
6617
6826
|
# @option params [String] :next_token
|
|
6618
|
-
#
|
|
6619
|
-
#
|
|
6620
|
-
# a token. To retrieve the next set of results, call this action again
|
|
6621
|
-
# and assign that token to the request object's `NextToken` parameter.
|
|
6622
|
-
# If there are no remaining results, the previous response object's
|
|
6623
|
-
# `NextToken` parameter is set to `null`.
|
|
6827
|
+
# The token for the next set of items to return. (You received this
|
|
6828
|
+
# token from a previous call.)
|
|
6624
6829
|
#
|
|
6625
6830
|
# @option params [String] :deprecated_status
|
|
6626
6831
|
# The deprecation status of the extension versions that you want to get
|
|
@@ -6757,12 +6962,8 @@ module Aws::CloudFormation
|
|
|
6757
6962
|
# request parameter to get the next set of results.
|
|
6758
6963
|
#
|
|
6759
6964
|
# @option params [String] :next_token
|
|
6760
|
-
#
|
|
6761
|
-
#
|
|
6762
|
-
# a token. To retrieve the next set of results, call this action again
|
|
6763
|
-
# and assign that token to the request object's `NextToken` parameter.
|
|
6764
|
-
# If there are no remaining results, the previous response object's
|
|
6765
|
-
# `NextToken` parameter is set to `null`.
|
|
6965
|
+
# The token for the next set of items to return. (You received this
|
|
6966
|
+
# token from a previous call.)
|
|
6766
6967
|
#
|
|
6767
6968
|
# @return [Types::ListTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6768
6969
|
#
|
|
@@ -7236,6 +7437,7 @@ module Aws::CloudFormation
|
|
|
7236
7437
|
# @return [Types::RollbackStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7237
7438
|
#
|
|
7238
7439
|
# * {Types::RollbackStackOutput#stack_id #stack_id} => String
|
|
7440
|
+
# * {Types::RollbackStackOutput#operation_id #operation_id} => String
|
|
7239
7441
|
#
|
|
7240
7442
|
# @example Request syntax with placeholder values
|
|
7241
7443
|
#
|
|
@@ -7249,6 +7451,7 @@ module Aws::CloudFormation
|
|
|
7249
7451
|
# @example Response structure
|
|
7250
7452
|
#
|
|
7251
7453
|
# resp.stack_id #=> String
|
|
7454
|
+
# resp.operation_id #=> String
|
|
7252
7455
|
#
|
|
7253
7456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackStack AWS API Documentation
|
|
7254
7457
|
#
|
|
@@ -7882,10 +8085,20 @@ module Aws::CloudFormation
|
|
|
7882
8085
|
# Reuse the existing template that is associated with the stack that you
|
|
7883
8086
|
# are updating.
|
|
7884
8087
|
#
|
|
8088
|
+
# When using templates with the `AWS::LanguageExtensions` transform,
|
|
8089
|
+
# provide the template instead of using `UsePreviousTemplate` to ensure
|
|
8090
|
+
# new parameter values and Systems Manager parameter updates are applied
|
|
8091
|
+
# correctly. For more information, see [AWS::LanguageExtensions
|
|
8092
|
+
# transform][1].
|
|
8093
|
+
#
|
|
7885
8094
|
# Conditional: You must specify only one of the following parameters:
|
|
7886
8095
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
|
7887
8096
|
# `true`.
|
|
7888
8097
|
#
|
|
8098
|
+
#
|
|
8099
|
+
#
|
|
8100
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/transform-aws-languageextensions.html
|
|
8101
|
+
#
|
|
7889
8102
|
# @option params [String] :stack_policy_during_update_body
|
|
7890
8103
|
# Structure that contains the temporary overriding stack policy body.
|
|
7891
8104
|
# You can specify either the `StackPolicyDuringUpdateBody` or the
|
|
@@ -8014,16 +8227,15 @@ module Aws::CloudFormation
|
|
|
8014
8227
|
# [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
8015
8228
|
#
|
|
8016
8229
|
# @option params [Array<String>] :resource_types
|
|
8017
|
-
#
|
|
8018
|
-
#
|
|
8019
|
-
# or `Custom::MyCustomInstance`.
|
|
8230
|
+
# Specifies which resource types you can work with, such as
|
|
8231
|
+
# `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
|
|
8020
8232
|
#
|
|
8021
8233
|
# If the list of resource types doesn't include a resource that you're
|
|
8022
8234
|
# updating, the stack update fails. By default, CloudFormation grants
|
|
8023
8235
|
# permissions to all resource types. IAM uses this parameter for
|
|
8024
8236
|
# CloudFormation-specific condition keys in IAM policies. For more
|
|
8025
|
-
# information, see [Control access with Identity and
|
|
8026
|
-
# Management][1].
|
|
8237
|
+
# information, see [Control CloudFormation access with Identity and
|
|
8238
|
+
# Access Management][1].
|
|
8027
8239
|
#
|
|
8028
8240
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
|
8029
8241
|
# specified.
|
|
@@ -8128,6 +8340,7 @@ module Aws::CloudFormation
|
|
|
8128
8340
|
# @return [Types::UpdateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8129
8341
|
#
|
|
8130
8342
|
# * {Types::UpdateStackOutput#stack_id #stack_id} => String
|
|
8343
|
+
# * {Types::UpdateStackOutput#operation_id #operation_id} => String
|
|
8131
8344
|
#
|
|
8132
8345
|
# @example Request syntax with placeholder values
|
|
8133
8346
|
#
|
|
@@ -8175,6 +8388,7 @@ module Aws::CloudFormation
|
|
|
8175
8388
|
# @example Response structure
|
|
8176
8389
|
#
|
|
8177
8390
|
# resp.stack_id #=> String
|
|
8391
|
+
# resp.operation_id #=> String
|
|
8178
8392
|
#
|
|
8179
8393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack AWS API Documentation
|
|
8180
8394
|
#
|
|
@@ -8905,7 +9119,7 @@ module Aws::CloudFormation
|
|
|
8905
9119
|
tracer: tracer
|
|
8906
9120
|
)
|
|
8907
9121
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
8908
|
-
context[:gem_version] = '1.
|
|
9122
|
+
context[:gem_version] = '1.145.0'
|
|
8909
9123
|
Seahorse::Client::Request.new(handlers, context)
|
|
8910
9124
|
end
|
|
8911
9125
|
|