aws-sdk-cloudformation 1.91.0 → 1.93.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f8b161e3dd557a5114c04f06db7ef86925ffda94f704c1a46ebb01112d5d5f2
4
- data.tar.gz: 8ed88c506558e5b3761484e2d68faddb336037ec733cbba4ce978e724511847a
3
+ metadata.gz: 28ea979399cbdd5109c4e88615a7e7c91496b252c73735f35a5c0b227b1d166d
4
+ data.tar.gz: 7830fbe9cc988ca01fd353ed8da8948a49f2b7e095e7a3bac9e46a1c706df61c
5
5
  SHA512:
6
- metadata.gz: e7073114b255177c38d156ec4ed4a31d088d3c1abe375c8a30fff0370c0fa05bd88ab9c6998eaf7d3082f05d8ce69ad6a3165139298e69c7d4a812a61906e2b1
7
- data.tar.gz: 4ffe6de5c2082fe5b883b563a02cbd3f403e1e4bbbd545ced895ec527d8c75e96937a35373e79e74a70eadb5395ecb07a362e20f65abec057575371ec804f4de
6
+ metadata.gz: 3ed73a5389e4f8243319669a916ea35a817a357d5d50a50511df80f27db5d1766ab4d622899bd32be83a751c4203ce311f181fe589e854b00569a1a0923b43bc
7
+ data.tar.gz: fe40a7d404494aca6866e53c9ab6dfab777adfc21db4950d0d834b941b148b94cdb216c3766d9658c578000a96db943b7c76747a66031bfd52ddfa605f737111
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2023-11-17)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.92.0 (2023-11-09)
10
+ ------------------
11
+
12
+ * Feature - Added new ConcurrencyMode feature for AWS CloudFormation StackSets for faster deployments to target accounts.
13
+
4
14
  1.91.0 (2023-10-16)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -887,6 +887,11 @@ module Aws::CloudFormation
887
887
  # For more information about macros, see [Using CloudFormation macros
888
888
  # to perform custom processing on templates][11].
889
889
  #
890
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
891
+ # specified.
892
+ #
893
+ # </note>
894
+ #
890
895
  #
891
896
  #
892
897
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -911,8 +916,13 @@ module Aws::CloudFormation
911
916
  # grants permissions to all resource types. Identity and Access
912
917
  # Management (IAM) uses this parameter for condition keys in IAM
913
918
  # policies for CloudFormation. For more information, see [Controlling
914
- # access with Identity and Access Management][1] in the CloudFormation
915
- # User Guide.
919
+ # access with Identity and Access Management][1] in the *CloudFormation
920
+ # User Guide*.
921
+ #
922
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
923
+ # specified.
924
+ #
925
+ # </note>
916
926
  #
917
927
  #
918
928
  #
@@ -1020,6 +1030,23 @@ module Aws::CloudFormation
1020
1030
  #
1021
1031
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
1022
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
+ #
1023
1050
  # @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1024
1051
  #
1025
1052
  # * {Types::CreateChangeSetOutput#id #id} => String
@@ -1074,6 +1101,7 @@ module Aws::CloudFormation
1074
1101
  # ],
1075
1102
  # include_nested_stacks: false,
1076
1103
  # on_stack_failure: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK, DELETE
1104
+ # import_existing_resources: false,
1077
1105
  # })
1078
1106
  #
1079
1107
  # @example Response structure
@@ -1107,7 +1135,7 @@ module Aws::CloudFormation
1107
1135
  # @option params [String] :template_body
1108
1136
  # Structure containing the template body with a minimum length of 1 byte
1109
1137
  # and a maximum length of 51,200 bytes. For more information, go to
1110
- # [Template anatomy][1] in the CloudFormation User Guide.
1138
+ # [Template anatomy][1] in the *CloudFormation User Guide*.
1111
1139
  #
1112
1140
  # Conditional: You must specify either the `TemplateBody` or the
1113
1141
  # `TemplateURL` parameter, but not both.
@@ -1120,7 +1148,7 @@ module Aws::CloudFormation
1120
1148
  # Location of file containing the template body. The URL must point to a
1121
1149
  # template (max size: 460,800 bytes) that's located in an Amazon S3
1122
1150
  # bucket or a Systems Manager document. For more information, go to the
1123
- # [Template anatomy][1] in the CloudFormation User Guide.
1151
+ # [Template anatomy][1] in the *CloudFormation User Guide*.
1124
1152
  #
1125
1153
  # Conditional: You must specify either the `TemplateBody` or the
1126
1154
  # `TemplateURL` parameter, but not both.
@@ -1234,6 +1262,11 @@ module Aws::CloudFormation
1234
1262
  # For more information, see [Using CloudFormation macros to perform
1235
1263
  # custom processing on templates][11].
1236
1264
  #
1265
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
1266
+ # specified.
1267
+ #
1268
+ # </note>
1269
+ #
1237
1270
  #
1238
1271
  #
1239
1272
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -1266,6 +1299,11 @@ module Aws::CloudFormation
1266
1299
  # in IAM policies. For more information, see [Controlling Access with
1267
1300
  # Identity and Access Management][1].
1268
1301
  #
1302
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
1303
+ # specified.
1304
+ #
1305
+ # </note>
1306
+ #
1269
1307
  #
1270
1308
  #
1271
1309
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -1553,6 +1591,7 @@ module Aws::CloudFormation
1553
1591
  # failure_tolerance_percentage: 1,
1554
1592
  # max_concurrent_count: 1,
1555
1593
  # max_concurrent_percentage: 1,
1594
+ # concurrency_mode: "STRICT_FAILURE_TOLERANCE", # accepts STRICT_FAILURE_TOLERANCE, SOFT_FAILURE_TOLERANCE
1556
1595
  # },
1557
1596
  # operation_id: "ClientRequestToken",
1558
1597
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
@@ -2118,6 +2157,7 @@ module Aws::CloudFormation
2118
2157
  # failure_tolerance_percentage: 1,
2119
2158
  # max_concurrent_count: 1,
2120
2159
  # max_concurrent_percentage: 1,
2160
+ # concurrency_mode: "STRICT_FAILURE_TOLERANCE", # accepts STRICT_FAILURE_TOLERANCE, SOFT_FAILURE_TOLERANCE
2121
2161
  # },
2122
2162
  # retain_stacks: false, # required
2123
2163
  # operation_id: "ClientRequestToken",
@@ -2293,7 +2333,7 @@ module Aws::CloudFormation
2293
2333
  # Returns the inputs for the change set and a list of changes that
2294
2334
  # CloudFormation will make if you execute the change set. For more
2295
2335
  # information, see [Updating Stacks Using Change Sets][1] in the
2296
- # CloudFormation User Guide.
2336
+ # *CloudFormation User Guide*.
2297
2337
  #
2298
2338
  #
2299
2339
  #
@@ -2333,6 +2373,7 @@ module Aws::CloudFormation
2333
2373
  # * {Types::DescribeChangeSetOutput#parent_change_set_id #parent_change_set_id} => String
2334
2374
  # * {Types::DescribeChangeSetOutput#root_change_set_id #root_change_set_id} => String
2335
2375
  # * {Types::DescribeChangeSetOutput#on_stack_failure #on_stack_failure} => String
2376
+ # * {Types::DescribeChangeSetOutput#import_existing_resources #import_existing_resources} => Boolean
2336
2377
  #
2337
2378
  # @example Request syntax with placeholder values
2338
2379
  #
@@ -2394,6 +2435,7 @@ module Aws::CloudFormation
2394
2435
  # resp.parent_change_set_id #=> String
2395
2436
  # resp.root_change_set_id #=> String
2396
2437
  # resp.on_stack_failure #=> String, one of "DO_NOTHING", "ROLLBACK", "DELETE"
2438
+ # resp.import_existing_resources #=> Boolean
2397
2439
  #
2398
2440
  #
2399
2441
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2645,7 +2687,7 @@ module Aws::CloudFormation
2645
2687
 
2646
2688
  # Returns all stack related events for a specified stack in reverse
2647
2689
  # chronological order. For more information about a stack's event
2648
- # history, go to [Stacks][1] in the CloudFormation User Guide.
2690
+ # history, go to [Stacks][1] in the *CloudFormation User Guide*.
2649
2691
  #
2650
2692
  # <note markdown="1"> You can list events for stacks that have failed to create or have been
2651
2693
  # deleted by specifying the unique stack identifier (stack ID).
@@ -3190,6 +3232,7 @@ module Aws::CloudFormation
3190
3232
  # resp.stack_set_operation.operation_preferences.failure_tolerance_percentage #=> Integer
3191
3233
  # resp.stack_set_operation.operation_preferences.max_concurrent_count #=> Integer
3192
3234
  # resp.stack_set_operation.operation_preferences.max_concurrent_percentage #=> Integer
3235
+ # resp.stack_set_operation.operation_preferences.concurrency_mode #=> String, one of "STRICT_FAILURE_TOLERANCE", "SOFT_FAILURE_TOLERANCE"
3193
3236
  # resp.stack_set_operation.retain_stacks #=> Boolean
3194
3237
  # resp.stack_set_operation.administration_role_arn #=> String
3195
3238
  # resp.stack_set_operation.execution_role_name #=> String
@@ -3224,7 +3267,7 @@ module Aws::CloudFormation
3224
3267
  # Returns the description for the specified stack; if no stack name was
3225
3268
  # specified, then it returns the description for all the stacks created.
3226
3269
  #
3227
- # <note markdown="1"> If the stack doesn't exist, an `ValidationError` is returned.
3270
+ # <note markdown="1"> If the stack doesn't exist, a `ValidationError` is returned.
3228
3271
  #
3229
3272
  # </note>
3230
3273
  #
@@ -3750,6 +3793,7 @@ module Aws::CloudFormation
3750
3793
  # failure_tolerance_percentage: 1,
3751
3794
  # max_concurrent_count: 1,
3752
3795
  # max_concurrent_percentage: 1,
3796
+ # concurrency_mode: "STRICT_FAILURE_TOLERANCE", # accepts STRICT_FAILURE_TOLERANCE, SOFT_FAILURE_TOLERANCE
3753
3797
  # },
3754
3798
  # operation_id: "ClientRequestToken",
3755
3799
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
@@ -3775,7 +3819,7 @@ module Aws::CloudFormation
3775
3819
  # @option params [String] :template_body
3776
3820
  # Structure containing the template body with a minimum length of 1 byte
3777
3821
  # and a maximum length of 51,200 bytes. (For more information, go to
3778
- # [Template Anatomy][1] in the CloudFormation User Guide.)
3822
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.)
3779
3823
  #
3780
3824
  # Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
3781
3825
  # are passed, only `TemplateBody` is used.
@@ -3788,7 +3832,7 @@ module Aws::CloudFormation
3788
3832
  # Location of file containing the template body. The URL must point to a
3789
3833
  # template that's located in an Amazon S3 bucket or a Systems Manager
3790
3834
  # document. For more information, go to [Template Anatomy][1] in the
3791
- # CloudFormation User Guide.
3835
+ # *CloudFormation User Guide*.
3792
3836
  #
3793
3837
  # Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
3794
3838
  # are passed, only `TemplateBody` is used.
@@ -4022,7 +4066,8 @@ module Aws::CloudFormation
4022
4066
  # @option params [String] :template_body
4023
4067
  # Structure containing the template body with a minimum length of 1 byte
4024
4068
  # and a maximum length of 51,200 bytes. For more information about
4025
- # templates, see [Template anatomy][1] in the CloudFormation User Guide.
4069
+ # templates, see [Template anatomy][1] in the *CloudFormation User
4070
+ # Guide*.
4026
4071
  #
4027
4072
  # Conditional: You must specify only one of the following parameters:
4028
4073
  # `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
@@ -4035,7 +4080,8 @@ module Aws::CloudFormation
4035
4080
  # Location of file containing the template body. The URL must point to a
4036
4081
  # template (max size: 460,800 bytes) that's located in an Amazon S3
4037
4082
  # bucket or a Systems Manager document. For more information about
4038
- # templates, see [Template anatomy][1] in the CloudFormation User Guide.
4083
+ # templates, see [Template anatomy][1] in the *CloudFormation User
4084
+ # Guide*.
4039
4085
  #
4040
4086
  # Conditional: You must specify only one of the following parameters:
4041
4087
  # `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
@@ -4217,6 +4263,7 @@ module Aws::CloudFormation
4217
4263
  # failure_tolerance_percentage: 1,
4218
4264
  # max_concurrent_count: 1,
4219
4265
  # max_concurrent_percentage: 1,
4266
+ # concurrency_mode: "STRICT_FAILURE_TOLERANCE", # accepts STRICT_FAILURE_TOLERANCE, SOFT_FAILURE_TOLERANCE
4220
4267
  # },
4221
4268
  # operation_id: "ClientRequestToken",
4222
4269
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
@@ -4276,6 +4323,7 @@ module Aws::CloudFormation
4276
4323
  # resp.summaries[0].include_nested_stacks #=> Boolean
4277
4324
  # resp.summaries[0].parent_change_set_id #=> String
4278
4325
  # resp.summaries[0].root_change_set_id #=> String
4326
+ # resp.summaries[0].import_existing_resources #=> Boolean
4279
4327
  # resp.next_token #=> String
4280
4328
  #
4281
4329
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets AWS API Documentation
@@ -4833,6 +4881,7 @@ module Aws::CloudFormation
4833
4881
  # resp.summaries[0].operation_preferences.failure_tolerance_percentage #=> Integer
4834
4882
  # resp.summaries[0].operation_preferences.max_concurrent_count #=> Integer
4835
4883
  # resp.summaries[0].operation_preferences.max_concurrent_percentage #=> Integer
4884
+ # resp.summaries[0].operation_preferences.concurrency_mode #=> String, one of "STRICT_FAILURE_TOLERANCE", "SOFT_FAILURE_TOLERANCE"
4836
4885
  # resp.next_token #=> String
4837
4886
  #
4838
4887
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperations AWS API Documentation
@@ -5612,7 +5661,7 @@ module Aws::CloudFormation
5612
5661
  #
5613
5662
  # For CloudFormation to assume the specified execution role, the role
5614
5663
  # must contain a trust relationship with the CloudFormation service
5615
- # principle (`resources.cloudformation.amazonaws.com`). For more
5664
+ # principal (`resources.cloudformation.amazonaws.com`). For more
5616
5665
  # information about adding trust relationships, see [Modifying a role
5617
5666
  # trust policy][1] in the *Identity and Access Management User Guide*.
5618
5667
  #
@@ -5740,8 +5789,8 @@ module Aws::CloudFormation
5740
5789
  #
5741
5790
  # @option params [String] :stack_policy_body
5742
5791
  # Structure containing the stack policy body. For more information, go
5743
- # to [ Prevent updates to stack resources][1] in the CloudFormation User
5744
- # Guide. You can specify either the `StackPolicyBody` or the
5792
+ # to [ Prevent updates to stack resources][1] in the *CloudFormation
5793
+ # User Guide*. You can specify either the `StackPolicyBody` or the
5745
5794
  # `StackPolicyURL` parameter, but not both.
5746
5795
  #
5747
5796
  #
@@ -6145,7 +6194,7 @@ module Aws::CloudFormation
6145
6194
  # @option params [String] :template_body
6146
6195
  # Structure containing the template body with a minimum length of 1 byte
6147
6196
  # and a maximum length of 51,200 bytes. (For more information, go to
6148
- # [Template Anatomy][1] in the CloudFormation User Guide.)
6197
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.)
6149
6198
  #
6150
6199
  # Conditional: You must specify only one of the following parameters:
6151
6200
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
@@ -6159,7 +6208,7 @@ module Aws::CloudFormation
6159
6208
  # Location of file containing the template body. The URL must point to a
6160
6209
  # template that's located in an Amazon S3 bucket or a Systems Manager
6161
6210
  # document. For more information, go to [Template Anatomy][1] in the
6162
- # CloudFormation User Guide.
6211
+ # *CloudFormation User Guide*.
6163
6212
  #
6164
6213
  # Conditional: You must specify only one of the following parameters:
6165
6214
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
@@ -6282,6 +6331,11 @@ module Aws::CloudFormation
6282
6331
  # For more information, see [Using CloudFormation Macros to Perform
6283
6332
  # Custom Processing on Templates][11].
6284
6333
  #
6334
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
6335
+ # specified.
6336
+ #
6337
+ # </note>
6338
+ #
6285
6339
  #
6286
6340
  #
6287
6341
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -6308,6 +6362,11 @@ module Aws::CloudFormation
6308
6362
  # in IAM policies. For more information, see [Controlling Access with
6309
6363
  # Identity and Access Management][1].
6310
6364
  #
6365
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
6366
+ # specified.
6367
+ #
6368
+ # </note>
6369
+ #
6311
6370
  #
6312
6371
  #
6313
6372
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -6625,6 +6684,7 @@ module Aws::CloudFormation
6625
6684
  # failure_tolerance_percentage: 1,
6626
6685
  # max_concurrent_count: 1,
6627
6686
  # max_concurrent_percentage: 1,
6687
+ # concurrency_mode: "STRICT_FAILURE_TOLERANCE", # accepts STRICT_FAILURE_TOLERANCE, SOFT_FAILURE_TOLERANCE
6628
6688
  # },
6629
6689
  # operation_id: "ClientRequestToken",
6630
6690
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
@@ -6998,6 +7058,7 @@ module Aws::CloudFormation
6998
7058
  # failure_tolerance_percentage: 1,
6999
7059
  # max_concurrent_count: 1,
7000
7060
  # max_concurrent_percentage: 1,
7061
+ # concurrency_mode: "STRICT_FAILURE_TOLERANCE", # accepts STRICT_FAILURE_TOLERANCE, SOFT_FAILURE_TOLERANCE
7001
7062
  # },
7002
7063
  # administration_role_arn: "RoleARN",
7003
7064
  # execution_role_name: "ExecutionRoleName",
@@ -7087,7 +7148,7 @@ module Aws::CloudFormation
7087
7148
  # @option params [String] :template_body
7088
7149
  # Structure containing the template body with a minimum length of 1 byte
7089
7150
  # and a maximum length of 51,200 bytes. For more information, go to
7090
- # [Template Anatomy][1] in the CloudFormation User Guide.
7151
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.
7091
7152
  #
7092
7153
  # Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
7093
7154
  # are passed, only `TemplateBody` is used.
@@ -7100,7 +7161,7 @@ module Aws::CloudFormation
7100
7161
  # Location of file containing the template body. The URL must point to a
7101
7162
  # template (max size: 460,800 bytes) that is located in an Amazon S3
7102
7163
  # bucket or a Systems Manager document. For more information, go to
7103
- # [Template Anatomy][1] in the CloudFormation User Guide.
7164
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.
7104
7165
  #
7105
7166
  # Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
7106
7167
  # are passed, only `TemplateBody` is used.
@@ -7160,7 +7221,7 @@ module Aws::CloudFormation
7160
7221
  params: params,
7161
7222
  config: config)
7162
7223
  context[:gem_name] = 'aws-sdk-cloudformation'
7163
- context[:gem_version] = '1.91.0'
7224
+ context[:gem_version] = '1.93.0'
7164
7225
  Seahorse::Client::Request.new(handlers, context)
7165
7226
  end
7166
7227
 
@@ -69,6 +69,7 @@ module Aws::CloudFormation
69
69
  Changes = Shapes::ListShape.new(name: 'Changes')
70
70
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
71
71
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
72
+ ConcurrencyMode = Shapes::StringShape.new(name: 'ConcurrencyMode')
72
73
  ConfigurationSchema = Shapes::StringShape.new(name: 'ConfigurationSchema')
73
74
  ConnectionArn = Shapes::StringShape.new(name: 'ConnectionArn')
74
75
  ContinueUpdateRollbackInput = Shapes::StructureShape.new(name: 'ContinueUpdateRollbackInput')
@@ -178,6 +179,7 @@ module Aws::CloudFormation
178
179
  HookTypeName = Shapes::StringShape.new(name: 'HookTypeName')
179
180
  HookTypeVersionId = Shapes::StringShape.new(name: 'HookTypeVersionId')
180
181
  IdentityProvider = Shapes::StringShape.new(name: 'IdentityProvider')
182
+ ImportExistingResources = Shapes::BooleanShape.new(name: 'ImportExistingResources')
181
183
  ImportStacksToStackSetInput = Shapes::StructureShape.new(name: 'ImportStacksToStackSetInput')
182
184
  ImportStacksToStackSetOutput = Shapes::StructureShape.new(name: 'ImportStacksToStackSetOutput')
183
185
  Imports = Shapes::ListShape.new(name: 'Imports')
@@ -598,6 +600,7 @@ module Aws::CloudFormation
598
600
  ChangeSetSummary.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
599
601
  ChangeSetSummary.add_member(:parent_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ParentChangeSetId"))
600
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"))
601
604
  ChangeSetSummary.struct_class = Types::ChangeSetSummary
602
605
 
603
606
  Changes.member = Shapes::ShapeRef.new(shape: Change)
@@ -628,6 +631,7 @@ module Aws::CloudFormation
628
631
  CreateChangeSetInput.add_member(:resources_to_import, Shapes::ShapeRef.new(shape: ResourcesToImport, location_name: "ResourcesToImport"))
629
632
  CreateChangeSetInput.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
630
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"))
631
635
  CreateChangeSetInput.struct_class = Types::CreateChangeSetInput
632
636
 
633
637
  CreateChangeSetOutput.add_member(:id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "Id"))
@@ -795,6 +799,7 @@ module Aws::CloudFormation
795
799
  DescribeChangeSetOutput.add_member(:parent_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ParentChangeSetId"))
796
800
  DescribeChangeSetOutput.add_member(:root_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "RootChangeSetId"))
797
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"))
798
803
  DescribeChangeSetOutput.struct_class = Types::DescribeChangeSetOutput
799
804
 
800
805
  DescribeOrganizationsAccessInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
@@ -1632,6 +1637,7 @@ module Aws::CloudFormation
1632
1637
  StackSetOperationPreferences.add_member(:failure_tolerance_percentage, Shapes::ShapeRef.new(shape: FailureTolerancePercentage, location_name: "FailureTolerancePercentage"))
1633
1638
  StackSetOperationPreferences.add_member(:max_concurrent_count, Shapes::ShapeRef.new(shape: MaxConcurrentCount, location_name: "MaxConcurrentCount"))
1634
1639
  StackSetOperationPreferences.add_member(:max_concurrent_percentage, Shapes::ShapeRef.new(shape: MaxConcurrentPercentage, location_name: "MaxConcurrentPercentage"))
1640
+ StackSetOperationPreferences.add_member(:concurrency_mode, Shapes::ShapeRef.new(shape: ConcurrencyMode, location_name: "ConcurrencyMode"))
1635
1641
  StackSetOperationPreferences.struct_class = Types::StackSetOperationPreferences
1636
1642
 
1637
1643
  StackSetOperationResultSummaries.member = Shapes::ShapeRef.new(shape: StackSetOperationResultSummary)
@@ -32,8 +32,8 @@ module Aws::CloudFormation
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://cloudformation.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://cloudformation-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -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.
@@ -210,6 +210,11 @@ module Aws::CloudFormation
210
210
  # For more information, see [Using CloudFormation macros to perform
211
211
  # custom processing on templates][11].
212
212
  #
213
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
214
+ # specified.
215
+ #
216
+ # </note>
217
+ #
213
218
  #
214
219
  #
215
220
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -241,6 +246,11 @@ module Aws::CloudFormation
241
246
  # in IAM policies. For more information, see [Controlling Access with
242
247
  # Identity and Access Management][1].
243
248
  #
249
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
250
+ # specified.
251
+ #
252
+ # </note>
253
+ #
244
254
  #
245
255
  #
246
256
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -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.
@@ -575,6 +575,11 @@ module Aws::CloudFormation
575
575
  # For more information, see [Using CloudFormation macros to perform
576
576
  # custom processing on templates][11].
577
577
  #
578
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
579
+ # specified.
580
+ #
581
+ # </note>
582
+ #
578
583
  #
579
584
  #
580
585
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -606,6 +611,11 @@ module Aws::CloudFormation
606
611
  # in IAM policies. For more information, see [Controlling Access with
607
612
  # Identity and Access Management][1].
608
613
  #
614
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
615
+ # specified.
616
+ #
617
+ # </note>
618
+ #
609
619
  #
610
620
  #
611
621
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -796,7 +806,7 @@ module Aws::CloudFormation
796
806
  # @option options [String] :template_body
797
807
  # Structure containing the template body with a minimum length of 1 byte
798
808
  # and a maximum length of 51,200 bytes. (For more information, go to
799
- # [Template Anatomy][1] in the CloudFormation User Guide.)
809
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.)
800
810
  #
801
811
  # Conditional: You must specify only one of the following parameters:
802
812
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
@@ -809,7 +819,7 @@ module Aws::CloudFormation
809
819
  # Location of file containing the template body. The URL must point to a
810
820
  # template that's located in an Amazon S3 bucket or a Systems Manager
811
821
  # document. For more information, go to [Template Anatomy][1] in the
812
- # CloudFormation User Guide.
822
+ # *CloudFormation User Guide*.
813
823
  #
814
824
  # Conditional: You must specify only one of the following parameters:
815
825
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
@@ -927,6 +937,11 @@ module Aws::CloudFormation
927
937
  # For more information, see [Using CloudFormation Macros to Perform
928
938
  # Custom Processing on Templates][11].
929
939
  #
940
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
941
+ # specified.
942
+ #
943
+ # </note>
944
+ #
930
945
  #
931
946
  #
932
947
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -952,6 +967,11 @@ module Aws::CloudFormation
952
967
  # in IAM policies. For more information, see [Controlling Access with
953
968
  # Identity and Access Management][1].
954
969
  #
970
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
971
+ # specified.
972
+ #
973
+ # </note>
974
+ #
955
975
  #
956
976
  #
957
977
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -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
@@ -811,6 +816,11 @@ module Aws::CloudFormation
811
816
  # For more information about macros, see [Using CloudFormation
812
817
  # macros to perform custom processing on templates][11].
813
818
  #
819
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
820
+ # specified.
821
+ #
822
+ # </note>
823
+ #
814
824
  #
815
825
  #
816
826
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -836,8 +846,13 @@ module Aws::CloudFormation
836
846
  # grants permissions to all resource types. Identity and Access
837
847
  # Management (IAM) uses this parameter for condition keys in IAM
838
848
  # policies for CloudFormation. For more information, see [Controlling
839
- # access with Identity and Access Management][1] in the CloudFormation
840
- # User Guide.
849
+ # access with Identity and Access Management][1] in the
850
+ # *CloudFormation User Guide*.
851
+ #
852
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
853
+ # specified.
854
+ #
855
+ # </note>
841
856
  #
842
857
  #
843
858
  #
@@ -958,6 +973,24 @@ module Aws::CloudFormation
958
973
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
959
974
  # @return [String]
960
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
+ #
961
994
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
962
995
  #
963
996
  class CreateChangeSetInput < Struct.new(
@@ -978,7 +1011,8 @@ module Aws::CloudFormation
978
1011
  :change_set_type,
979
1012
  :resources_to_import,
980
1013
  :include_nested_stacks,
981
- :on_stack_failure)
1014
+ :on_stack_failure,
1015
+ :import_existing_resources)
982
1016
  SENSITIVE = []
983
1017
  include Aws::Structure
984
1018
  end
@@ -1018,7 +1052,7 @@ module Aws::CloudFormation
1018
1052
  # @!attribute [rw] template_body
1019
1053
  # Structure containing the template body with a minimum length of 1
1020
1054
  # byte and a maximum length of 51,200 bytes. For more information, go
1021
- # to [Template anatomy][1] in the CloudFormation User Guide.
1055
+ # to [Template anatomy][1] in the *CloudFormation User Guide*.
1022
1056
  #
1023
1057
  # Conditional: You must specify either the `TemplateBody` or the
1024
1058
  # `TemplateURL` parameter, but not both.
@@ -1032,7 +1066,7 @@ module Aws::CloudFormation
1032
1066
  # Location of file containing the template body. The URL must point to
1033
1067
  # a template (max size: 460,800 bytes) that's located in an Amazon S3
1034
1068
  # bucket or a Systems Manager document. For more information, go to
1035
- # the [Template anatomy][1] in the CloudFormation User Guide.
1069
+ # the [Template anatomy][1] in the *CloudFormation User Guide*.
1036
1070
  #
1037
1071
  # Conditional: You must specify either the `TemplateBody` or the
1038
1072
  # `TemplateURL` parameter, but not both.
@@ -1153,6 +1187,11 @@ module Aws::CloudFormation
1153
1187
  # For more information, see [Using CloudFormation macros to perform
1154
1188
  # custom processing on templates][11].
1155
1189
  #
1190
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
1191
+ # specified.
1192
+ #
1193
+ # </note>
1194
+ #
1156
1195
  #
1157
1196
  #
1158
1197
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -1187,6 +1226,11 @@ module Aws::CloudFormation
1187
1226
  # information, see [Controlling Access with Identity and Access
1188
1227
  # Management][1].
1189
1228
  #
1229
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
1230
+ # specified.
1231
+ #
1232
+ # </note>
1233
+ #
1190
1234
  #
1191
1235
  #
1192
1236
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -2401,6 +2445,21 @@ module Aws::CloudFormation
2401
2445
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
2402
2446
  # @return [String]
2403
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
+ #
2404
2463
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetOutput AWS API Documentation
2405
2464
  #
2406
2465
  class DescribeChangeSetOutput < Struct.new(
@@ -2423,7 +2482,8 @@ module Aws::CloudFormation
2423
2482
  :include_nested_stacks,
2424
2483
  :parent_change_set_id,
2425
2484
  :root_change_set_id,
2426
- :on_stack_failure)
2485
+ :on_stack_failure,
2486
+ :import_existing_resources)
2427
2487
  SENSITIVE = []
2428
2488
  include Aws::Structure
2429
2489
  end
@@ -3665,7 +3725,7 @@ module Aws::CloudFormation
3665
3725
  # @!attribute [rw] template_body
3666
3726
  # Structure containing the template body with a minimum length of 1
3667
3727
  # byte and a maximum length of 51,200 bytes. (For more information, go
3668
- # to [Template Anatomy][1] in the CloudFormation User Guide.)
3728
+ # to [Template Anatomy][1] in the *CloudFormation User Guide*.)
3669
3729
  #
3670
3730
  # Conditional: You must pass `TemplateBody` or `TemplateURL`. If both
3671
3731
  # are passed, only `TemplateBody` is used.
@@ -3679,7 +3739,7 @@ module Aws::CloudFormation
3679
3739
  # Location of file containing the template body. The URL must point to
3680
3740
  # a template that's located in an Amazon S3 bucket or a Systems
3681
3741
  # Manager document. For more information, go to [Template Anatomy][1]
3682
- # in the CloudFormation User Guide.
3742
+ # in the *CloudFormation User Guide*.
3683
3743
  #
3684
3744
  # Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
3685
3745
  # are passed, only `TemplateBody` is used.
@@ -3835,8 +3895,8 @@ module Aws::CloudFormation
3835
3895
  #
3836
3896
  # @!attribute [rw] stack_policy_body
3837
3897
  # Structure containing the stack policy body. (For more information,
3838
- # go to [ Prevent Updates to Stack Resources][1] in the CloudFormation
3839
- # User Guide.)
3898
+ # go to [ Prevent Updates to Stack Resources][1] in the
3899
+ # *CloudFormation User Guide*.)
3840
3900
  #
3841
3901
  #
3842
3902
  #
@@ -3896,7 +3956,7 @@ module Aws::CloudFormation
3896
3956
  #
3897
3957
  # @!attribute [rw] template_body
3898
3958
  # Structure containing the template body. (For more information, go to
3899
- # [Template Anatomy][1] in the CloudFormation User Guide.)
3959
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.)
3900
3960
  #
3901
3961
  # CloudFormation returns the same template that was used when the
3902
3962
  # stack was created.
@@ -3928,8 +3988,8 @@ module Aws::CloudFormation
3928
3988
  # @!attribute [rw] template_body
3929
3989
  # Structure containing the template body with a minimum length of 1
3930
3990
  # byte and a maximum length of 51,200 bytes. For more information
3931
- # about templates, see [Template anatomy][1] in the CloudFormation
3932
- # User Guide.
3991
+ # about templates, see [Template anatomy][1] in the *CloudFormation
3992
+ # User Guide*.
3933
3993
  #
3934
3994
  # Conditional: You must specify only one of the following parameters:
3935
3995
  # `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
@@ -3943,8 +4003,8 @@ module Aws::CloudFormation
3943
4003
  # Location of file containing the template body. The URL must point to
3944
4004
  # a template (max size: 460,800 bytes) that's located in an Amazon S3
3945
4005
  # bucket or a Systems Manager document. For more information about
3946
- # templates, see [Template anatomy][1] in the CloudFormation User
3947
- # Guide.
4006
+ # templates, see [Template anatomy][1] in the *CloudFormation User
4007
+ # Guide*.
3948
4008
  #
3949
4009
  # Conditional: You must specify only one of the following parameters:
3950
4010
  # `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
@@ -5779,7 +5839,7 @@ module Aws::CloudFormation
5779
5839
  #
5780
5840
  # For CloudFormation to assume the specified execution role, the role
5781
5841
  # must contain a trust relationship with the CloudFormation service
5782
- # principle (`resources.cloudformation.amazonaws.com`). For more
5842
+ # principal (`resources.cloudformation.amazonaws.com`). For more
5783
5843
  # information about adding trust relationships, see [Modifying a role
5784
5844
  # trust policy][1] in the *Identity and Access Management User Guide*.
5785
5845
  #
@@ -6309,8 +6369,8 @@ module Aws::CloudFormation
6309
6369
  #
6310
6370
  # @!attribute [rw] stack_policy_body
6311
6371
  # Structure containing the stack policy body. For more information, go
6312
- # to [ Prevent updates to stack resources][1] in the CloudFormation
6313
- # User Guide. You can specify either the `StackPolicyBody` or the
6372
+ # to [ Prevent updates to stack resources][1] in the *CloudFormation
6373
+ # User Guide*. You can specify either the `StackPolicyBody` or the
6314
6374
  # `StackPolicyURL` parameter, but not both.
6315
6375
  #
6316
6376
  #
@@ -8177,9 +8237,10 @@ module Aws::CloudFormation
8177
8237
  #
8178
8238
  # @!attribute [rw] max_concurrent_count
8179
8239
  # The maximum number of accounts in which to perform this operation at
8180
- # one time. This is dependent on the value of
8181
- # `FailureToleranceCount`.`MaxConcurrentCount` is at most one more
8182
- # than the `FailureToleranceCount`.
8240
+ # one time. This can depend on the value of `FailureToleranceCount`
8241
+ # depending on your `ConcurrencyMode`. `MaxConcurrentCount` is at most
8242
+ # one more than the `FailureToleranceCount` if you're using
8243
+ # `STRICT_FAILURE_TOLERANCE`.
8183
8244
  #
8184
8245
  # Note that this setting lets you specify the *maximum* for
8185
8246
  # operations. For large deployments, under certain circumstances the
@@ -8212,6 +8273,28 @@ module Aws::CloudFormation
8212
8273
  # By default, `1` is specified.
8213
8274
  # @return [Integer]
8214
8275
  #
8276
+ # @!attribute [rw] concurrency_mode
8277
+ # Specifies how the concurrency level behaves during the operation
8278
+ # execution.
8279
+ #
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.
8287
+ #
8288
+ # If failure tolerance or Maximum concurrent accounts are set to
8289
+ # percentages, the behavior is similar.
8290
+ #
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.
8296
+ # @return [String]
8297
+ #
8215
8298
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationPreferences AWS API Documentation
8216
8299
  #
8217
8300
  class StackSetOperationPreferences < Struct.new(
@@ -8220,7 +8303,8 @@ module Aws::CloudFormation
8220
8303
  :failure_tolerance_count,
8221
8304
  :failure_tolerance_percentage,
8222
8305
  :max_concurrent_count,
8223
- :max_concurrent_percentage)
8306
+ :max_concurrent_percentage,
8307
+ :concurrency_mode)
8224
8308
  SENSITIVE = []
8225
8309
  include Aws::Structure
8226
8310
  end
@@ -9220,7 +9304,7 @@ module Aws::CloudFormation
9220
9304
  # @!attribute [rw] template_body
9221
9305
  # Structure containing the template body with a minimum length of 1
9222
9306
  # byte and a maximum length of 51,200 bytes. (For more information, go
9223
- # to [Template Anatomy][1] in the CloudFormation User Guide.)
9307
+ # to [Template Anatomy][1] in the *CloudFormation User Guide*.)
9224
9308
  #
9225
9309
  # Conditional: You must specify only one of the following parameters:
9226
9310
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
@@ -9235,7 +9319,7 @@ module Aws::CloudFormation
9235
9319
  # Location of file containing the template body. The URL must point to
9236
9320
  # a template that's located in an Amazon S3 bucket or a Systems
9237
9321
  # Manager document. For more information, go to [Template Anatomy][1]
9238
- # in the CloudFormation User Guide.
9322
+ # in the *CloudFormation User Guide*.
9239
9323
  #
9240
9324
  # Conditional: You must specify only one of the following parameters:
9241
9325
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
@@ -9363,6 +9447,11 @@ module Aws::CloudFormation
9363
9447
  # For more information, see [Using CloudFormation Macros to Perform
9364
9448
  # Custom Processing on Templates][11].
9365
9449
  #
9450
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
9451
+ # specified.
9452
+ #
9453
+ # </note>
9454
+ #
9366
9455
  #
9367
9456
  #
9368
9457
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
@@ -9390,6 +9479,11 @@ module Aws::CloudFormation
9390
9479
  # condition keys in IAM policies. For more information, see
9391
9480
  # [Controlling Access with Identity and Access Management][1].
9392
9481
  #
9482
+ # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
9483
+ # specified.
9484
+ #
9485
+ # </note>
9486
+ #
9393
9487
  #
9394
9488
  #
9395
9489
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
@@ -10092,7 +10186,7 @@ module Aws::CloudFormation
10092
10186
  # @!attribute [rw] template_body
10093
10187
  # Structure containing the template body with a minimum length of 1
10094
10188
  # byte and a maximum length of 51,200 bytes. For more information, go
10095
- # to [Template Anatomy][1] in the CloudFormation User Guide.
10189
+ # to [Template Anatomy][1] in the *CloudFormation User Guide*.
10096
10190
  #
10097
10191
  # Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
10098
10192
  # are passed, only `TemplateBody` is used.
@@ -10106,7 +10200,7 @@ module Aws::CloudFormation
10106
10200
  # Location of file containing the template body. The URL must point to
10107
10201
  # a template (max size: 460,800 bytes) that is located in an Amazon S3
10108
10202
  # bucket or a Systems Manager document. For more information, go to
10109
- # [Template Anatomy][1] in the CloudFormation User Guide.
10203
+ # [Template Anatomy][1] in the *CloudFormation User Guide*.
10110
10204
  #
10111
10205
  # Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
10112
10206
  # are passed, only `TemplateBody` is used.
@@ -57,6 +57,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
57
57
  # @!group service
58
58
  module Aws::CloudFormation
59
59
 
60
- GEM_VERSION = '1.91.0'
60
+ GEM_VERSION = '1.93.0'
61
61
 
62
62
  end
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.91.0
4
+ version: 1.93.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-10-16 00:00:00.000000000 Z
11
+ date: 2023-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core