aws-sdk-cloudformation 1.92.0 → 1.94.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +40 -17
- data/lib/aws-sdk-cloudformation/client_api.rb +4 -0
- data/lib/aws-sdk-cloudformation/resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack.rb +4 -4
- data/lib/aws-sdk-cloudformation/types.rb +74 -31
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 541edfefb973fad696828122a127095c30e103557bd91d4b2069e90f079f68d0
|
4
|
+
data.tar.gz: 3ddca3111df00d989f0a876a510ce4066f38c45a1ef690ef0c9db88406dba184
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94a34f6e89965e7fcd98045bdd366d13ef2d937651705bcdaf01563a396ee323db94c30b46f17f135fe07be7bad5e7dd0a98c15e59a85826175be6218b48334d
|
7
|
+
data.tar.gz: 6c614472fa15d1bd1e147d03291c798ec20f1fa8a60ca36ef5b113040866c9a7e36d8439a8bb33d01766c8749ce9e32431f47e743ed5c30e94a1eef2ff18fc3b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.94.0 (2023-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.93.0 (2023-11-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds a new flag ImportExistingResources to CreateChangeSet. Specify this parameter on a CREATE- or UPDATE-type change set to import existing resources with custom names instead of recreating them.
|
13
|
+
|
4
14
|
1.92.0 (2023-11-09)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.94.0
|
@@ -916,8 +916,8 @@ module Aws::CloudFormation
|
|
916
916
|
# grants permissions to all resource types. Identity and Access
|
917
917
|
# Management (IAM) uses this parameter for condition keys in IAM
|
918
918
|
# policies for CloudFormation. For more information, see [Controlling
|
919
|
-
# access with Identity and Access Management][1] in the CloudFormation
|
920
|
-
# User Guide
|
919
|
+
# access with Identity and Access Management][1] in the *CloudFormation
|
920
|
+
# User Guide*.
|
921
921
|
#
|
922
922
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
923
923
|
# specified.
|
@@ -1030,6 +1030,23 @@ module Aws::CloudFormation
|
|
1030
1030
|
#
|
1031
1031
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
|
1032
1032
|
#
|
1033
|
+
# @option params [Boolean] :import_existing_resources
|
1034
|
+
# Indicates if the stack set imports resources that already exist.
|
1035
|
+
#
|
1036
|
+
# <note markdown="1"> This parameter can only import resources that have custom names in
|
1037
|
+
# templates. For more information, see [name type][1] in the
|
1038
|
+
# *CloudFormation User Guide*. To import resources that do not accept
|
1039
|
+
# custom names, such as EC2 instances, use the resource import feature
|
1040
|
+
# instead. For more information, see [Bringing existing resources into
|
1041
|
+
# CloudFormation management][2] in the *CloudFormation User Guide*.
|
1042
|
+
#
|
1043
|
+
# </note>
|
1044
|
+
#
|
1045
|
+
#
|
1046
|
+
#
|
1047
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html
|
1048
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html
|
1049
|
+
#
|
1033
1050
|
# @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1034
1051
|
#
|
1035
1052
|
# * {Types::CreateChangeSetOutput#id #id} => String
|
@@ -1084,6 +1101,7 @@ module Aws::CloudFormation
|
|
1084
1101
|
# ],
|
1085
1102
|
# include_nested_stacks: false,
|
1086
1103
|
# on_stack_failure: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK, DELETE
|
1104
|
+
# import_existing_resources: false,
|
1087
1105
|
# })
|
1088
1106
|
#
|
1089
1107
|
# @example Response structure
|
@@ -1117,7 +1135,7 @@ module Aws::CloudFormation
|
|
1117
1135
|
# @option params [String] :template_body
|
1118
1136
|
# Structure containing the template body with a minimum length of 1 byte
|
1119
1137
|
# and a maximum length of 51,200 bytes. For more information, go to
|
1120
|
-
# [Template anatomy][1] in the CloudFormation User Guide
|
1138
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
1121
1139
|
#
|
1122
1140
|
# Conditional: You must specify either the `TemplateBody` or the
|
1123
1141
|
# `TemplateURL` parameter, but not both.
|
@@ -1130,7 +1148,7 @@ module Aws::CloudFormation
|
|
1130
1148
|
# Location of file containing the template body. The URL must point to a
|
1131
1149
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
1132
1150
|
# bucket or a Systems Manager document. For more information, go to the
|
1133
|
-
# [Template anatomy][1] in the CloudFormation User Guide
|
1151
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
1134
1152
|
#
|
1135
1153
|
# Conditional: You must specify either the `TemplateBody` or the
|
1136
1154
|
# `TemplateURL` parameter, but not both.
|
@@ -2315,7 +2333,7 @@ module Aws::CloudFormation
|
|
2315
2333
|
# Returns the inputs for the change set and a list of changes that
|
2316
2334
|
# CloudFormation will make if you execute the change set. For more
|
2317
2335
|
# information, see [Updating Stacks Using Change Sets][1] in the
|
2318
|
-
# CloudFormation User Guide
|
2336
|
+
# *CloudFormation User Guide*.
|
2319
2337
|
#
|
2320
2338
|
#
|
2321
2339
|
#
|
@@ -2355,6 +2373,7 @@ module Aws::CloudFormation
|
|
2355
2373
|
# * {Types::DescribeChangeSetOutput#parent_change_set_id #parent_change_set_id} => String
|
2356
2374
|
# * {Types::DescribeChangeSetOutput#root_change_set_id #root_change_set_id} => String
|
2357
2375
|
# * {Types::DescribeChangeSetOutput#on_stack_failure #on_stack_failure} => String
|
2376
|
+
# * {Types::DescribeChangeSetOutput#import_existing_resources #import_existing_resources} => Boolean
|
2358
2377
|
#
|
2359
2378
|
# @example Request syntax with placeholder values
|
2360
2379
|
#
|
@@ -2416,6 +2435,7 @@ module Aws::CloudFormation
|
|
2416
2435
|
# resp.parent_change_set_id #=> String
|
2417
2436
|
# resp.root_change_set_id #=> String
|
2418
2437
|
# resp.on_stack_failure #=> String, one of "DO_NOTHING", "ROLLBACK", "DELETE"
|
2438
|
+
# resp.import_existing_resources #=> Boolean
|
2419
2439
|
#
|
2420
2440
|
#
|
2421
2441
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2667,7 +2687,7 @@ module Aws::CloudFormation
|
|
2667
2687
|
|
2668
2688
|
# Returns all stack related events for a specified stack in reverse
|
2669
2689
|
# chronological order. For more information about a stack's event
|
2670
|
-
# history, go to [Stacks][1] in the CloudFormation User Guide
|
2690
|
+
# history, go to [Stacks][1] in the *CloudFormation User Guide*.
|
2671
2691
|
#
|
2672
2692
|
# <note markdown="1"> You can list events for stacks that have failed to create or have been
|
2673
2693
|
# deleted by specifying the unique stack identifier (stack ID).
|
@@ -3799,7 +3819,7 @@ module Aws::CloudFormation
|
|
3799
3819
|
# @option params [String] :template_body
|
3800
3820
|
# Structure containing the template body with a minimum length of 1 byte
|
3801
3821
|
# and a maximum length of 51,200 bytes. (For more information, go to
|
3802
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
3822
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
3803
3823
|
#
|
3804
3824
|
# Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
|
3805
3825
|
# are passed, only `TemplateBody` is used.
|
@@ -3812,7 +3832,7 @@ module Aws::CloudFormation
|
|
3812
3832
|
# Location of file containing the template body. The URL must point to a
|
3813
3833
|
# template that's located in an Amazon S3 bucket or a Systems Manager
|
3814
3834
|
# document. For more information, go to [Template Anatomy][1] in the
|
3815
|
-
# CloudFormation User Guide
|
3835
|
+
# *CloudFormation User Guide*.
|
3816
3836
|
#
|
3817
3837
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
3818
3838
|
# are passed, only `TemplateBody` is used.
|
@@ -4046,7 +4066,8 @@ module Aws::CloudFormation
|
|
4046
4066
|
# @option params [String] :template_body
|
4047
4067
|
# Structure containing the template body with a minimum length of 1 byte
|
4048
4068
|
# and a maximum length of 51,200 bytes. For more information about
|
4049
|
-
# templates, see [Template anatomy][1] in the CloudFormation User
|
4069
|
+
# templates, see [Template anatomy][1] in the *CloudFormation User
|
4070
|
+
# Guide*.
|
4050
4071
|
#
|
4051
4072
|
# Conditional: You must specify only one of the following parameters:
|
4052
4073
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -4059,7 +4080,8 @@ module Aws::CloudFormation
|
|
4059
4080
|
# Location of file containing the template body. The URL must point to a
|
4060
4081
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
4061
4082
|
# bucket or a Systems Manager document. For more information about
|
4062
|
-
# templates, see [Template anatomy][1] in the CloudFormation User
|
4083
|
+
# templates, see [Template anatomy][1] in the *CloudFormation User
|
4084
|
+
# Guide*.
|
4063
4085
|
#
|
4064
4086
|
# Conditional: You must specify only one of the following parameters:
|
4065
4087
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -4301,6 +4323,7 @@ module Aws::CloudFormation
|
|
4301
4323
|
# resp.summaries[0].include_nested_stacks #=> Boolean
|
4302
4324
|
# resp.summaries[0].parent_change_set_id #=> String
|
4303
4325
|
# resp.summaries[0].root_change_set_id #=> String
|
4326
|
+
# resp.summaries[0].import_existing_resources #=> Boolean
|
4304
4327
|
# resp.next_token #=> String
|
4305
4328
|
#
|
4306
4329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets AWS API Documentation
|
@@ -5766,8 +5789,8 @@ module Aws::CloudFormation
|
|
5766
5789
|
#
|
5767
5790
|
# @option params [String] :stack_policy_body
|
5768
5791
|
# Structure containing the stack policy body. For more information, go
|
5769
|
-
# to [ Prevent updates to stack resources][1] in the CloudFormation
|
5770
|
-
# Guide
|
5792
|
+
# to [ Prevent updates to stack resources][1] in the *CloudFormation
|
5793
|
+
# User Guide*. You can specify either the `StackPolicyBody` or the
|
5771
5794
|
# `StackPolicyURL` parameter, but not both.
|
5772
5795
|
#
|
5773
5796
|
#
|
@@ -6171,7 +6194,7 @@ module Aws::CloudFormation
|
|
6171
6194
|
# @option params [String] :template_body
|
6172
6195
|
# Structure containing the template body with a minimum length of 1 byte
|
6173
6196
|
# and a maximum length of 51,200 bytes. (For more information, go to
|
6174
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
6197
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
6175
6198
|
#
|
6176
6199
|
# Conditional: You must specify only one of the following parameters:
|
6177
6200
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -6185,7 +6208,7 @@ module Aws::CloudFormation
|
|
6185
6208
|
# Location of file containing the template body. The URL must point to a
|
6186
6209
|
# template that's located in an Amazon S3 bucket or a Systems Manager
|
6187
6210
|
# document. For more information, go to [Template Anatomy][1] in the
|
6188
|
-
# CloudFormation User Guide
|
6211
|
+
# *CloudFormation User Guide*.
|
6189
6212
|
#
|
6190
6213
|
# Conditional: You must specify only one of the following parameters:
|
6191
6214
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -7125,7 +7148,7 @@ module Aws::CloudFormation
|
|
7125
7148
|
# @option params [String] :template_body
|
7126
7149
|
# Structure containing the template body with a minimum length of 1 byte
|
7127
7150
|
# and a maximum length of 51,200 bytes. For more information, go to
|
7128
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
7151
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.
|
7129
7152
|
#
|
7130
7153
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
7131
7154
|
# are passed, only `TemplateBody` is used.
|
@@ -7138,7 +7161,7 @@ module Aws::CloudFormation
|
|
7138
7161
|
# Location of file containing the template body. The URL must point to a
|
7139
7162
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
7140
7163
|
# bucket or a Systems Manager document. For more information, go to
|
7141
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
7164
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.
|
7142
7165
|
#
|
7143
7166
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
7144
7167
|
# are passed, only `TemplateBody` is used.
|
@@ -7198,7 +7221,7 @@ module Aws::CloudFormation
|
|
7198
7221
|
params: params,
|
7199
7222
|
config: config)
|
7200
7223
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
7201
|
-
context[:gem_version] = '1.
|
7224
|
+
context[:gem_version] = '1.94.0'
|
7202
7225
|
Seahorse::Client::Request.new(handlers, context)
|
7203
7226
|
end
|
7204
7227
|
|
@@ -179,6 +179,7 @@ module Aws::CloudFormation
|
|
179
179
|
HookTypeName = Shapes::StringShape.new(name: 'HookTypeName')
|
180
180
|
HookTypeVersionId = Shapes::StringShape.new(name: 'HookTypeVersionId')
|
181
181
|
IdentityProvider = Shapes::StringShape.new(name: 'IdentityProvider')
|
182
|
+
ImportExistingResources = Shapes::BooleanShape.new(name: 'ImportExistingResources')
|
182
183
|
ImportStacksToStackSetInput = Shapes::StructureShape.new(name: 'ImportStacksToStackSetInput')
|
183
184
|
ImportStacksToStackSetOutput = Shapes::StructureShape.new(name: 'ImportStacksToStackSetOutput')
|
184
185
|
Imports = Shapes::ListShape.new(name: 'Imports')
|
@@ -599,6 +600,7 @@ module Aws::CloudFormation
|
|
599
600
|
ChangeSetSummary.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
|
600
601
|
ChangeSetSummary.add_member(:parent_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ParentChangeSetId"))
|
601
602
|
ChangeSetSummary.add_member(:root_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "RootChangeSetId"))
|
603
|
+
ChangeSetSummary.add_member(:import_existing_resources, Shapes::ShapeRef.new(shape: ImportExistingResources, location_name: "ImportExistingResources"))
|
602
604
|
ChangeSetSummary.struct_class = Types::ChangeSetSummary
|
603
605
|
|
604
606
|
Changes.member = Shapes::ShapeRef.new(shape: Change)
|
@@ -629,6 +631,7 @@ module Aws::CloudFormation
|
|
629
631
|
CreateChangeSetInput.add_member(:resources_to_import, Shapes::ShapeRef.new(shape: ResourcesToImport, location_name: "ResourcesToImport"))
|
630
632
|
CreateChangeSetInput.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
|
631
633
|
CreateChangeSetInput.add_member(:on_stack_failure, Shapes::ShapeRef.new(shape: OnStackFailure, location_name: "OnStackFailure"))
|
634
|
+
CreateChangeSetInput.add_member(:import_existing_resources, Shapes::ShapeRef.new(shape: ImportExistingResources, location_name: "ImportExistingResources"))
|
632
635
|
CreateChangeSetInput.struct_class = Types::CreateChangeSetInput
|
633
636
|
|
634
637
|
CreateChangeSetOutput.add_member(:id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "Id"))
|
@@ -796,6 +799,7 @@ module Aws::CloudFormation
|
|
796
799
|
DescribeChangeSetOutput.add_member(:parent_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ParentChangeSetId"))
|
797
800
|
DescribeChangeSetOutput.add_member(:root_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "RootChangeSetId"))
|
798
801
|
DescribeChangeSetOutput.add_member(:on_stack_failure, Shapes::ShapeRef.new(shape: OnStackFailure, location_name: "OnStackFailure"))
|
802
|
+
DescribeChangeSetOutput.add_member(:import_existing_resources, Shapes::ShapeRef.new(shape: ImportExistingResources, location_name: "ImportExistingResources"))
|
799
803
|
DescribeChangeSetOutput.struct_class = Types::DescribeChangeSetOutput
|
800
804
|
|
801
805
|
DescribeOrganizationsAccessInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
@@ -90,7 +90,7 @@ module Aws::CloudFormation
|
|
90
90
|
# @option options [String] :template_body
|
91
91
|
# Structure containing the template body with a minimum length of 1 byte
|
92
92
|
# and a maximum length of 51,200 bytes. For more information, go to
|
93
|
-
# [Template anatomy][1] in the CloudFormation User Guide
|
93
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
94
94
|
#
|
95
95
|
# Conditional: You must specify either the `TemplateBody` or the
|
96
96
|
# `TemplateURL` parameter, but not both.
|
@@ -102,7 +102,7 @@ module Aws::CloudFormation
|
|
102
102
|
# Location of file containing the template body. The URL must point to a
|
103
103
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
104
104
|
# bucket or a Systems Manager document. For more information, go to the
|
105
|
-
# [Template anatomy][1] in the CloudFormation User Guide
|
105
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
106
106
|
#
|
107
107
|
# Conditional: You must specify either the `TemplateBody` or the
|
108
108
|
# `TemplateURL` parameter, but not both.
|
@@ -455,7 +455,7 @@ module Aws::CloudFormation
|
|
455
455
|
# @option options [String] :template_body
|
456
456
|
# Structure containing the template body with a minimum length of 1 byte
|
457
457
|
# and a maximum length of 51,200 bytes. For more information, go to
|
458
|
-
# [Template anatomy][1] in the CloudFormation User Guide
|
458
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
459
459
|
#
|
460
460
|
# Conditional: You must specify either the `TemplateBody` or the
|
461
461
|
# `TemplateURL` parameter, but not both.
|
@@ -467,7 +467,7 @@ module Aws::CloudFormation
|
|
467
467
|
# Location of file containing the template body. The URL must point to a
|
468
468
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
469
469
|
# bucket or a Systems Manager document. For more information, go to the
|
470
|
-
# [Template anatomy][1] in the CloudFormation User Guide
|
470
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
471
471
|
#
|
472
472
|
# Conditional: You must specify either the `TemplateBody` or the
|
473
473
|
# `TemplateURL` parameter, but not both.
|
@@ -806,7 +806,7 @@ module Aws::CloudFormation
|
|
806
806
|
# @option options [String] :template_body
|
807
807
|
# Structure containing the template body with a minimum length of 1 byte
|
808
808
|
# and a maximum length of 51,200 bytes. (For more information, go to
|
809
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
809
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
810
810
|
#
|
811
811
|
# Conditional: You must specify only one of the following parameters:
|
812
812
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -819,7 +819,7 @@ module Aws::CloudFormation
|
|
819
819
|
# Location of file containing the template body. The URL must point to a
|
820
820
|
# template that's located in an Amazon S3 bucket or a Systems Manager
|
821
821
|
# document. For more information, go to [Template Anatomy][1] in the
|
822
|
-
# CloudFormation User Guide
|
822
|
+
# *CloudFormation User Guide*.
|
823
823
|
#
|
824
824
|
# Conditional: You must specify only one of the following parameters:
|
825
825
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -580,6 +580,10 @@ module Aws::CloudFormation
|
|
580
580
|
# The root change set ID.
|
581
581
|
# @return [String]
|
582
582
|
#
|
583
|
+
# @!attribute [rw] import_existing_resources
|
584
|
+
# Indicates if the stack set imports resources that already exist.
|
585
|
+
# @return [Boolean]
|
586
|
+
#
|
583
587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ChangeSetSummary AWS API Documentation
|
584
588
|
#
|
585
589
|
class ChangeSetSummary < Struct.new(
|
@@ -594,7 +598,8 @@ module Aws::CloudFormation
|
|
594
598
|
:description,
|
595
599
|
:include_nested_stacks,
|
596
600
|
:parent_change_set_id,
|
597
|
-
:root_change_set_id
|
601
|
+
:root_change_set_id,
|
602
|
+
:import_existing_resources)
|
598
603
|
SENSITIVE = []
|
599
604
|
include Aws::Structure
|
600
605
|
end
|
@@ -841,8 +846,8 @@ module Aws::CloudFormation
|
|
841
846
|
# grants permissions to all resource types. Identity and Access
|
842
847
|
# Management (IAM) uses this parameter for condition keys in IAM
|
843
848
|
# policies for CloudFormation. For more information, see [Controlling
|
844
|
-
# access with Identity and Access Management][1] in the
|
845
|
-
# User Guide
|
849
|
+
# access with Identity and Access Management][1] in the
|
850
|
+
# *CloudFormation User Guide*.
|
846
851
|
#
|
847
852
|
# <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
|
848
853
|
# specified.
|
@@ -968,6 +973,24 @@ module Aws::CloudFormation
|
|
968
973
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
|
969
974
|
# @return [String]
|
970
975
|
#
|
976
|
+
# @!attribute [rw] import_existing_resources
|
977
|
+
# Indicates if the stack set imports resources that already exist.
|
978
|
+
#
|
979
|
+
# <note markdown="1"> This parameter can only import resources that have custom names in
|
980
|
+
# templates. For more information, see [name type][1] in the
|
981
|
+
# *CloudFormation User Guide*. To import resources that do not accept
|
982
|
+
# custom names, such as EC2 instances, use the resource import feature
|
983
|
+
# instead. For more information, see [Bringing existing resources into
|
984
|
+
# CloudFormation management][2] in the *CloudFormation User Guide*.
|
985
|
+
#
|
986
|
+
# </note>
|
987
|
+
#
|
988
|
+
#
|
989
|
+
#
|
990
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html
|
991
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html
|
992
|
+
# @return [Boolean]
|
993
|
+
#
|
971
994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
|
972
995
|
#
|
973
996
|
class CreateChangeSetInput < Struct.new(
|
@@ -988,7 +1011,8 @@ module Aws::CloudFormation
|
|
988
1011
|
:change_set_type,
|
989
1012
|
:resources_to_import,
|
990
1013
|
:include_nested_stacks,
|
991
|
-
:on_stack_failure
|
1014
|
+
:on_stack_failure,
|
1015
|
+
:import_existing_resources)
|
992
1016
|
SENSITIVE = []
|
993
1017
|
include Aws::Structure
|
994
1018
|
end
|
@@ -1028,7 +1052,7 @@ module Aws::CloudFormation
|
|
1028
1052
|
# @!attribute [rw] template_body
|
1029
1053
|
# Structure containing the template body with a minimum length of 1
|
1030
1054
|
# byte and a maximum length of 51,200 bytes. For more information, go
|
1031
|
-
# to [Template anatomy][1] in the CloudFormation User Guide
|
1055
|
+
# to [Template anatomy][1] in the *CloudFormation User Guide*.
|
1032
1056
|
#
|
1033
1057
|
# Conditional: You must specify either the `TemplateBody` or the
|
1034
1058
|
# `TemplateURL` parameter, but not both.
|
@@ -1042,7 +1066,7 @@ module Aws::CloudFormation
|
|
1042
1066
|
# Location of file containing the template body. The URL must point to
|
1043
1067
|
# a template (max size: 460,800 bytes) that's located in an Amazon S3
|
1044
1068
|
# bucket or a Systems Manager document. For more information, go to
|
1045
|
-
# the [Template anatomy][1] in the CloudFormation User Guide
|
1069
|
+
# the [Template anatomy][1] in the *CloudFormation User Guide*.
|
1046
1070
|
#
|
1047
1071
|
# Conditional: You must specify either the `TemplateBody` or the
|
1048
1072
|
# `TemplateURL` parameter, but not both.
|
@@ -2421,6 +2445,21 @@ module Aws::CloudFormation
|
|
2421
2445
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
|
2422
2446
|
# @return [String]
|
2423
2447
|
#
|
2448
|
+
# @!attribute [rw] import_existing_resources
|
2449
|
+
# Indicates if the stack set imports resources that already exist.
|
2450
|
+
#
|
2451
|
+
# <note markdown="1"> This parameter can only import resources that have [custom names][1]
|
2452
|
+
# in templates. To import resources that do not accept custom names,
|
2453
|
+
# such as EC2 instances, use the [resource import][2] feature instead.
|
2454
|
+
#
|
2455
|
+
# </note>
|
2456
|
+
#
|
2457
|
+
#
|
2458
|
+
#
|
2459
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html
|
2460
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html
|
2461
|
+
# @return [Boolean]
|
2462
|
+
#
|
2424
2463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetOutput AWS API Documentation
|
2425
2464
|
#
|
2426
2465
|
class DescribeChangeSetOutput < Struct.new(
|
@@ -2443,7 +2482,8 @@ module Aws::CloudFormation
|
|
2443
2482
|
:include_nested_stacks,
|
2444
2483
|
:parent_change_set_id,
|
2445
2484
|
:root_change_set_id,
|
2446
|
-
:on_stack_failure
|
2485
|
+
:on_stack_failure,
|
2486
|
+
:import_existing_resources)
|
2447
2487
|
SENSITIVE = []
|
2448
2488
|
include Aws::Structure
|
2449
2489
|
end
|
@@ -3685,7 +3725,7 @@ module Aws::CloudFormation
|
|
3685
3725
|
# @!attribute [rw] template_body
|
3686
3726
|
# Structure containing the template body with a minimum length of 1
|
3687
3727
|
# byte and a maximum length of 51,200 bytes. (For more information, go
|
3688
|
-
# to [Template Anatomy][1] in the CloudFormation User Guide
|
3728
|
+
# to [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
3689
3729
|
#
|
3690
3730
|
# Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
|
3691
3731
|
# are passed, only `TemplateBody` is used.
|
@@ -3699,7 +3739,7 @@ module Aws::CloudFormation
|
|
3699
3739
|
# Location of file containing the template body. The URL must point to
|
3700
3740
|
# a template that's located in an Amazon S3 bucket or a Systems
|
3701
3741
|
# Manager document. For more information, go to [Template Anatomy][1]
|
3702
|
-
# in the CloudFormation User Guide
|
3742
|
+
# in the *CloudFormation User Guide*.
|
3703
3743
|
#
|
3704
3744
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
3705
3745
|
# are passed, only `TemplateBody` is used.
|
@@ -3855,8 +3895,8 @@ module Aws::CloudFormation
|
|
3855
3895
|
#
|
3856
3896
|
# @!attribute [rw] stack_policy_body
|
3857
3897
|
# Structure containing the stack policy body. (For more information,
|
3858
|
-
# go to [ Prevent Updates to Stack Resources][1] in the
|
3859
|
-
# User Guide
|
3898
|
+
# go to [ Prevent Updates to Stack Resources][1] in the
|
3899
|
+
# *CloudFormation User Guide*.)
|
3860
3900
|
#
|
3861
3901
|
#
|
3862
3902
|
#
|
@@ -3916,7 +3956,7 @@ module Aws::CloudFormation
|
|
3916
3956
|
#
|
3917
3957
|
# @!attribute [rw] template_body
|
3918
3958
|
# Structure containing the template body. (For more information, go to
|
3919
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
3959
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
3920
3960
|
#
|
3921
3961
|
# CloudFormation returns the same template that was used when the
|
3922
3962
|
# stack was created.
|
@@ -3948,8 +3988,8 @@ module Aws::CloudFormation
|
|
3948
3988
|
# @!attribute [rw] template_body
|
3949
3989
|
# Structure containing the template body with a minimum length of 1
|
3950
3990
|
# byte and a maximum length of 51,200 bytes. For more information
|
3951
|
-
# about templates, see [Template anatomy][1] in the CloudFormation
|
3952
|
-
# User Guide
|
3991
|
+
# about templates, see [Template anatomy][1] in the *CloudFormation
|
3992
|
+
# User Guide*.
|
3953
3993
|
#
|
3954
3994
|
# Conditional: You must specify only one of the following parameters:
|
3955
3995
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -3963,8 +4003,8 @@ module Aws::CloudFormation
|
|
3963
4003
|
# Location of file containing the template body. The URL must point to
|
3964
4004
|
# a template (max size: 460,800 bytes) that's located in an Amazon S3
|
3965
4005
|
# bucket or a Systems Manager document. For more information about
|
3966
|
-
# templates, see [Template anatomy][1] in the CloudFormation User
|
3967
|
-
# Guide
|
4006
|
+
# templates, see [Template anatomy][1] in the *CloudFormation User
|
4007
|
+
# Guide*.
|
3968
4008
|
#
|
3969
4009
|
# Conditional: You must specify only one of the following parameters:
|
3970
4010
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -6329,8 +6369,8 @@ module Aws::CloudFormation
|
|
6329
6369
|
#
|
6330
6370
|
# @!attribute [rw] stack_policy_body
|
6331
6371
|
# Structure containing the stack policy body. For more information, go
|
6332
|
-
# to [ Prevent updates to stack resources][1] in the CloudFormation
|
6333
|
-
# User Guide
|
6372
|
+
# to [ Prevent updates to stack resources][1] in the *CloudFormation
|
6373
|
+
# User Guide*. You can specify either the `StackPolicyBody` or the
|
6334
6374
|
# `StackPolicyURL` parameter, but not both.
|
6335
6375
|
#
|
6336
6376
|
#
|
@@ -8237,19 +8277,22 @@ module Aws::CloudFormation
|
|
8237
8277
|
# Specifies how the concurrency level behaves during the operation
|
8238
8278
|
# execution.
|
8239
8279
|
#
|
8240
|
-
# * `STRICT_FAILURE_TOLERANCE`:
|
8241
|
-
# level to ensure the number of failed accounts never
|
8242
|
-
# `FailureToleranceCount` +1.
|
8243
|
-
# concurrency
|
8244
|
-
# `MaxConcurrentCount
|
8245
|
-
# the
|
8280
|
+
# * `STRICT_FAILURE_TOLERANCE`: This option dynamically lowers the
|
8281
|
+
# concurrency level to ensure the number of failed accounts never
|
8282
|
+
# exceeds the value of `FailureToleranceCount` +1. The initial
|
8283
|
+
# actual concurrency is set to the lower of either the value of the
|
8284
|
+
# `MaxConcurrentCount`, or the value of `MaxConcurrentCount` +1. The
|
8285
|
+
# actual concurrency is then reduced proportionally by the number of
|
8286
|
+
# failures. This is the default behavior.
|
8246
8287
|
#
|
8247
8288
|
# If failure tolerance or Maximum concurrent accounts are set to
|
8248
8289
|
# percentages, the behavior is similar.
|
8249
8290
|
#
|
8250
|
-
# * `SOFT_FAILURE_TOLERANCE`:
|
8251
|
-
#
|
8252
|
-
#
|
8291
|
+
# * `SOFT_FAILURE_TOLERANCE`: This option decouples
|
8292
|
+
# `FailureToleranceCount` from the actual concurrency. This allows
|
8293
|
+
# stack set operations to run at the concurrency level set by the
|
8294
|
+
# `MaxConcurrentCount` value, or `MaxConcurrentPercentage`,
|
8295
|
+
# regardless of the number of failures.
|
8253
8296
|
# @return [String]
|
8254
8297
|
#
|
8255
8298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationPreferences AWS API Documentation
|
@@ -9261,7 +9304,7 @@ module Aws::CloudFormation
|
|
9261
9304
|
# @!attribute [rw] template_body
|
9262
9305
|
# Structure containing the template body with a minimum length of 1
|
9263
9306
|
# byte and a maximum length of 51,200 bytes. (For more information, go
|
9264
|
-
# to [Template Anatomy][1] in the CloudFormation User Guide
|
9307
|
+
# to [Template Anatomy][1] in the *CloudFormation User Guide*.)
|
9265
9308
|
#
|
9266
9309
|
# Conditional: You must specify only one of the following parameters:
|
9267
9310
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -9276,7 +9319,7 @@ module Aws::CloudFormation
|
|
9276
9319
|
# Location of file containing the template body. The URL must point to
|
9277
9320
|
# a template that's located in an Amazon S3 bucket or a Systems
|
9278
9321
|
# Manager document. For more information, go to [Template Anatomy][1]
|
9279
|
-
# in the CloudFormation User Guide
|
9322
|
+
# in the *CloudFormation User Guide*.
|
9280
9323
|
#
|
9281
9324
|
# Conditional: You must specify only one of the following parameters:
|
9282
9325
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -10143,7 +10186,7 @@ module Aws::CloudFormation
|
|
10143
10186
|
# @!attribute [rw] template_body
|
10144
10187
|
# Structure containing the template body with a minimum length of 1
|
10145
10188
|
# byte and a maximum length of 51,200 bytes. For more information, go
|
10146
|
-
# to [Template Anatomy][1] in the CloudFormation User Guide
|
10189
|
+
# to [Template Anatomy][1] in the *CloudFormation User Guide*.
|
10147
10190
|
#
|
10148
10191
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
10149
10192
|
# are passed, only `TemplateBody` is used.
|
@@ -10157,7 +10200,7 @@ module Aws::CloudFormation
|
|
10157
10200
|
# Location of file containing the template body. The URL must point to
|
10158
10201
|
# a template (max size: 460,800 bytes) that is located in an Amazon S3
|
10159
10202
|
# bucket or a Systems Manager document. For more information, go to
|
10160
|
-
# [Template Anatomy][1] in the CloudFormation User Guide
|
10203
|
+
# [Template Anatomy][1] in the *CloudFormation User Guide*.
|
10161
10204
|
#
|
10162
10205
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
10163
10206
|
# are passed, only `TemplateBody` is used.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.94.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.188.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.188.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -85,7 +85,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
86
86
|
- - ">="
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version: '2.
|
88
|
+
version: '2.5'
|
89
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
91
|
- - ">="
|