aws-sdk-cloudformation 1.60.0 → 1.64.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: 1d30524e381c780114507372c60777ddf87608e658f74aa12f2355358296ea61
4
- data.tar.gz: 481b90a2022a6e226df9cb64ae9077aaef3156d69b2603e749bae321b921cb64
3
+ metadata.gz: 2e8ee0aa54f28acd1e4d00de9344535fb9ede45bdc76281481971aca7aff5d74
4
+ data.tar.gz: 26985543b072bcf4b70cbdd18e63576c9dd82904abc66436fc2bee2baf7a2bf9
5
5
  SHA512:
6
- metadata.gz: 1fe3b9a9b3c44e312667eeafc572928e7da7b7e9b81ec4bea7b917a88fcfe3811420874f3951304be3d1e2d051d4b66b3fdc10e39cd1cddbca0f8dc10ffd18bd
7
- data.tar.gz: e56a8307e82458eb73cf38030d7c90dc45c7097550ae93db523153fb784775a717696fb6d219e13996fddc02d6e81046d0f3295e3ca7ae6c2a18d27d910d5633
6
+ metadata.gz: eed2cb72eb6a5f2df87575acee6a78398fcd30e0f705914760774ec6a383ea4148a232a6168c4302f3dad4f10ac9e6dea33de494d54ecffdafe427d3fc98ea0d
7
+ data.tar.gz: e1cbaf542024361e68117a21adbcbc5cf5f36685096a6745738b60d28bb341c03b86c9f79adec3e10f52ddb80b830b4602aec2d1b907899eccfb90c708633445
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.63.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.62.0 (2021-11-22)
15
+ ------------------
16
+
17
+ * Feature - This release include SDK changes for the feature launch of Stack Import to Service Managed StackSet.
18
+
19
+ 1.61.0 (2021-11-19)
20
+ ------------------
21
+
22
+ * Feature - The StackSets ManagedExecution feature will allow concurrency for non-conflicting StackSet operations and queuing the StackSet operations that conflict at a given time for later execution.
23
+
4
24
  1.60.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.64.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/query.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::CloudFormation
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::Query)
78
80
 
@@ -119,7 +121,9 @@ module Aws::CloudFormation
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::CloudFormation
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -295,7 +303,7 @@ module Aws::CloudFormation
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::CloudFormation
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -1674,6 +1685,10 @@ module Aws::CloudFormation
1674
1685
  # **A suitable default value is auto-generated.** You should normally
1675
1686
  # not need to pass this option.**
1676
1687
  #
1688
+ # @option params [Types::ManagedExecution] :managed_execution
1689
+ # Describes whether StackSets performs non-conflicting operations
1690
+ # concurrently and queues conflicting operations.
1691
+ #
1677
1692
  # @return [Types::CreateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1678
1693
  #
1679
1694
  # * {Types::CreateStackSetOutput#stack_set_id #stack_set_id} => String
@@ -1710,6 +1725,9 @@ module Aws::CloudFormation
1710
1725
  # },
1711
1726
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
1712
1727
  # client_request_token: "ClientRequestToken",
1728
+ # managed_execution: {
1729
+ # active: false,
1730
+ # },
1713
1731
  # })
1714
1732
  #
1715
1733
  # @example Response structure
@@ -2851,6 +2869,7 @@ module Aws::CloudFormation
2851
2869
  # resp.stack_set.permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
2852
2870
  # resp.stack_set.organizational_unit_ids #=> Array
2853
2871
  # resp.stack_set.organizational_unit_ids[0] #=> String
2872
+ # resp.stack_set.managed_execution.active #=> Boolean
2854
2873
  #
2855
2874
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
2856
2875
  #
@@ -3820,25 +3839,34 @@ module Aws::CloudFormation
3820
3839
  req.send_request(options)
3821
3840
  end
3822
3841
 
3823
- # Import existing stacks into a new stack sets. Use the stack import
3824
- # operation to import up to 10 stacks into a new stack set in the same
3825
- # account as the source stack or in a different administrator account
3826
- # and Region, by specifying the stack ID of the stack you intend to
3827
- # import.
3828
- #
3829
- # <note markdown="1"> `ImportStacksToStackSet` is only supported by self-managed
3830
- # permissions.
3831
- #
3832
- # </note>
3842
+ # Use the stack import operations for self-managed or service-managed
3843
+ # StackSets. For self-managed StackSets, the import operation can import
3844
+ # stacks in the administrator account or in different target accounts
3845
+ # and Amazon Web Services Regions. For service-managed StackSets, the
3846
+ # import operation can import any stack in the same AWS Organizations as
3847
+ # the management account. The import operation can import up to 10
3848
+ # stacks using inline stack IDs or up to 10,000 stacks using an Amazon
3849
+ # S3 object.
3833
3850
  #
3834
3851
  # @option params [required, String] :stack_set_name
3835
3852
  # The name of the stack set. The name must be unique in the Region where
3836
3853
  # you create your stack set.
3837
3854
  #
3838
- # @option params [required, Array<String>] :stack_ids
3855
+ # @option params [Array<String>] :stack_ids
3839
3856
  # The IDs of the stacks you are importing into a stack set. You import
3840
3857
  # up to 10 stacks per stack set at a time.
3841
3858
  #
3859
+ # Specify either `StackIds` or `StackIdsUrl`.
3860
+ #
3861
+ # @option params [String] :stack_ids_url
3862
+ # The Amazon S3 URL which contains list of stack ids to be inputted.
3863
+ #
3864
+ # Specify either `StackIds` or `StackIdsUrl`.
3865
+ #
3866
+ # @option params [Array<String>] :organizational_unit_ids
3867
+ # The list of OU ID’s to which the stacks being imported has to be
3868
+ # mapped as deployment target.
3869
+ #
3842
3870
  # @option params [Types::StackSetOperationPreferences] :operation_preferences
3843
3871
  # The user-specified preferences for how CloudFormation performs a stack
3844
3872
  # set operation.
@@ -3872,7 +3900,9 @@ module Aws::CloudFormation
3872
3900
  #
3873
3901
  # resp = client.import_stacks_to_stack_set({
3874
3902
  # stack_set_name: "StackSetNameOrId", # required
3875
- # stack_ids: ["StackId"], # required
3903
+ # stack_ids: ["StackId"],
3904
+ # stack_ids_url: "StackIdsUrl",
3905
+ # organizational_unit_ids: ["OrganizationalUnitId"],
3876
3906
  # operation_preferences: {
3877
3907
  # region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
3878
3908
  # region_order: ["Region"],
@@ -4456,6 +4486,7 @@ module Aws::CloudFormation
4456
4486
  # resp.summaries[0].permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
4457
4487
  # resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
4458
4488
  # resp.summaries[0].last_drift_check_timestamp #=> Time
4489
+ # resp.summaries[0].managed_execution.active #=> Boolean
4459
4490
  # resp.next_token #=> String
4460
4491
  #
4461
4492
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets AWS API Documentation
@@ -4749,8 +4780,10 @@ module Aws::CloudFormation
4749
4780
  # @option params [Types::TypeFilters] :filters
4750
4781
  # Filter criteria to use in determining which extensions to return.
4751
4782
  #
4752
- # If you specify a filter, CloudFormation ignores any specified
4753
- # `Visibility` value when returning the list of types.
4783
+ # Filters must be compatible with `Visibility` to return valid results.
4784
+ # For example, specifying `AWS_TYPES` for `Category` and `PRIVATE` for
4785
+ # `Visibility` returns an empty list of types, but specifying `PUBLIC`
4786
+ # for `Visibility` returns the desired list.
4754
4787
  #
4755
4788
  # @option params [Integer] :max_results
4756
4789
  # The maximum number of results to be returned with a single call. If
@@ -4858,8 +4891,9 @@ module Aws::CloudFormation
4858
4891
  # If you do not specify a version number, CloudFormation increments the
4859
4892
  # version number by one minor version release.
4860
4893
  #
4861
- # The first time you publish a type, CloudFormation sets the version
4862
- # number to `1.0.0`, regardless of the value you specify.
4894
+ # You cannot specify a version number the first time you publish a type.
4895
+ # CloudFormation automatically sets the first version number to be
4896
+ # `1.0.0`.
4863
4897
  #
4864
4898
  #
4865
4899
  #
@@ -6454,6 +6488,10 @@ module Aws::CloudFormation
6454
6488
  #
6455
6489
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
6456
6490
  #
6491
+ # @option params [Types::ManagedExecution] :managed_execution
6492
+ # Describes whether StackSets performs non-conflicting operations
6493
+ # concurrently and queues conflicting operations.
6494
+ #
6457
6495
  # @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6458
6496
  #
6459
6497
  # * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
@@ -6505,6 +6543,9 @@ module Aws::CloudFormation
6505
6543
  # accounts: ["Account"],
6506
6544
  # regions: ["Region"],
6507
6545
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
6546
+ # managed_execution: {
6547
+ # active: false,
6548
+ # },
6508
6549
  # })
6509
6550
  #
6510
6551
  # @example Response structure
@@ -6646,7 +6687,7 @@ module Aws::CloudFormation
6646
6687
  params: params,
6647
6688
  config: config)
6648
6689
  context[:gem_name] = 'aws-sdk-cloudformation'
6649
- context[:gem_version] = '1.60.0'
6690
+ context[:gem_version] = '1.64.0'
6650
6691
  Seahorse::Client::Request.new(handlers, context)
6651
6692
  end
6652
6693
 
@@ -201,6 +201,8 @@ module Aws::CloudFormation
201
201
  LogicalResourceId = Shapes::StringShape.new(name: 'LogicalResourceId')
202
202
  LogicalResourceIds = Shapes::ListShape.new(name: 'LogicalResourceIds')
203
203
  MajorVersion = Shapes::IntegerShape.new(name: 'MajorVersion')
204
+ ManagedExecution = Shapes::StructureShape.new(name: 'ManagedExecution')
205
+ ManagedExecutionNullable = Shapes::BooleanShape.new(name: 'ManagedExecutionNullable')
204
206
  MaxConcurrentCount = Shapes::IntegerShape.new(name: 'MaxConcurrentCount')
205
207
  MaxConcurrentPercentage = Shapes::IntegerShape.new(name: 'MaxConcurrentPercentage')
206
208
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -325,6 +327,7 @@ module Aws::CloudFormation
325
327
  StackEvents = Shapes::ListShape.new(name: 'StackEvents')
326
328
  StackId = Shapes::StringShape.new(name: 'StackId')
327
329
  StackIdList = Shapes::ListShape.new(name: 'StackIdList')
330
+ StackIdsUrl = Shapes::StringShape.new(name: 'StackIdsUrl')
328
331
  StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
329
332
  StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
330
333
  StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
@@ -614,6 +617,7 @@ module Aws::CloudFormation
614
617
  CreateStackSetInput.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
615
618
  CreateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
616
619
  CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
620
+ CreateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
617
621
  CreateStackSetInput.struct_class = Types::CreateStackSetInput
618
622
 
619
623
  CreateStackSetOutput.add_member(:stack_set_id, Shapes::ShapeRef.new(shape: StackSetId, location_name: "StackSetId"))
@@ -917,7 +921,9 @@ module Aws::CloudFormation
917
921
  GetTemplateSummaryOutput.struct_class = Types::GetTemplateSummaryOutput
918
922
 
919
923
  ImportStacksToStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
920
- ImportStacksToStackSetInput.add_member(:stack_ids, Shapes::ShapeRef.new(shape: StackIdList, required: true, location_name: "StackIds"))
924
+ ImportStacksToStackSetInput.add_member(:stack_ids, Shapes::ShapeRef.new(shape: StackIdList, location_name: "StackIds"))
925
+ ImportStacksToStackSetInput.add_member(:stack_ids_url, Shapes::ShapeRef.new(shape: StackIdsUrl, location_name: "StackIdsUrl"))
926
+ ImportStacksToStackSetInput.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
921
927
  ImportStacksToStackSetInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
922
928
  ImportStacksToStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
923
929
  ImportStacksToStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
@@ -1065,6 +1071,9 @@ module Aws::CloudFormation
1065
1071
 
1066
1072
  LogicalResourceIds.member = Shapes::ShapeRef.new(shape: LogicalResourceId)
1067
1073
 
1074
+ ManagedExecution.add_member(:active, Shapes::ShapeRef.new(shape: ManagedExecutionNullable, location_name: "Active"))
1075
+ ManagedExecution.struct_class = Types::ManagedExecution
1076
+
1068
1077
  ModuleInfo.add_member(:type_hierarchy, Shapes::ShapeRef.new(shape: TypeHierarchy, location_name: "TypeHierarchy"))
1069
1078
  ModuleInfo.add_member(:logical_id_hierarchy, Shapes::ShapeRef.new(shape: LogicalIdHierarchy, location_name: "LogicalIdHierarchy"))
1070
1079
  ModuleInfo.struct_class = Types::ModuleInfo
@@ -1444,6 +1453,7 @@ module Aws::CloudFormation
1444
1453
  StackSet.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
1445
1454
  StackSet.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
1446
1455
  StackSet.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
1456
+ StackSet.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1447
1457
  StackSet.struct_class = Types::StackSet
1448
1458
 
1449
1459
  StackSetDriftDetectionDetails.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackSetDriftStatus, location_name: "DriftStatus"))
@@ -1511,6 +1521,7 @@ module Aws::CloudFormation
1511
1521
  StackSetSummary.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
1512
1522
  StackSetSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
1513
1523
  StackSetSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
1524
+ StackSetSummary.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1514
1525
  StackSetSummary.struct_class = Types::StackSetSummary
1515
1526
 
1516
1527
  StackStatusFilter.member = Shapes::ShapeRef.new(shape: StackStatus)
@@ -1686,6 +1697,7 @@ module Aws::CloudFormation
1686
1697
  UpdateStackSetInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
1687
1698
  UpdateStackSetInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
1688
1699
  UpdateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
1700
+ UpdateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1689
1701
  UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
1690
1702
 
1691
1703
  UpdateStackSetOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
@@ -1500,6 +1500,9 @@ module Aws::CloudFormation
1500
1500
  # },
1501
1501
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
1502
1502
  # client_request_token: "ClientRequestToken",
1503
+ # managed_execution: {
1504
+ # active: false,
1505
+ # },
1503
1506
  # }
1504
1507
  #
1505
1508
  # @!attribute [rw] stack_set_name
@@ -1742,6 +1745,11 @@ module Aws::CloudFormation
1742
1745
  # not need to pass this option.
1743
1746
  # @return [String]
1744
1747
  #
1748
+ # @!attribute [rw] managed_execution
1749
+ # Describes whether StackSets performs non-conflicting operations
1750
+ # concurrently and queues conflicting operations.
1751
+ # @return [Types::ManagedExecution]
1752
+ #
1745
1753
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSetInput AWS API Documentation
1746
1754
  #
1747
1755
  class CreateStackSetInput < Struct.new(
@@ -1758,7 +1766,8 @@ module Aws::CloudFormation
1758
1766
  :permission_model,
1759
1767
  :auto_deployment,
1760
1768
  :call_as,
1761
- :client_request_token)
1769
+ :client_request_token,
1770
+ :managed_execution)
1762
1771
  SENSITIVE = []
1763
1772
  include Aws::Structure
1764
1773
  end
@@ -4180,7 +4189,9 @@ module Aws::CloudFormation
4180
4189
  #
4181
4190
  # {
4182
4191
  # stack_set_name: "StackSetNameOrId", # required
4183
- # stack_ids: ["StackId"], # required
4192
+ # stack_ids: ["StackId"],
4193
+ # stack_ids_url: "StackIdsUrl",
4194
+ # organizational_unit_ids: ["OrganizationalUnitId"],
4184
4195
  # operation_preferences: {
4185
4196
  # region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
4186
4197
  # region_order: ["Region"],
@@ -4201,6 +4212,19 @@ module Aws::CloudFormation
4201
4212
  # @!attribute [rw] stack_ids
4202
4213
  # The IDs of the stacks you are importing into a stack set. You import
4203
4214
  # up to 10 stacks per stack set at a time.
4215
+ #
4216
+ # Specify either `StackIds` or `StackIdsUrl`.
4217
+ # @return [Array<String>]
4218
+ #
4219
+ # @!attribute [rw] stack_ids_url
4220
+ # The Amazon S3 URL which contains list of stack ids to be inputted.
4221
+ #
4222
+ # Specify either `StackIds` or `StackIdsUrl`.
4223
+ # @return [String]
4224
+ #
4225
+ # @!attribute [rw] organizational_unit_ids
4226
+ # The list of OU ID’s to which the stacks being imported has to be
4227
+ # mapped as deployment target.
4204
4228
  # @return [Array<String>]
4205
4229
  #
4206
4230
  # @!attribute [rw] operation_preferences
@@ -4236,6 +4260,8 @@ module Aws::CloudFormation
4236
4260
  class ImportStacksToStackSetInput < Struct.new(
4237
4261
  :stack_set_name,
4238
4262
  :stack_ids,
4263
+ :stack_ids_url,
4264
+ :organizational_unit_ids,
4239
4265
  :operation_preferences,
4240
4266
  :operation_id,
4241
4267
  :call_as)
@@ -5211,8 +5237,10 @@ module Aws::CloudFormation
5211
5237
  # @!attribute [rw] filters
5212
5238
  # Filter criteria to use in determining which extensions to return.
5213
5239
  #
5214
- # If you specify a filter, CloudFormation ignores any specified
5215
- # `Visibility` value when returning the list of types.
5240
+ # Filters must be compatible with `Visibility` to return valid
5241
+ # results. For example, specifying `AWS_TYPES` for `Category` and
5242
+ # `PRIVATE` for `Visibility` returns an empty list of types, but
5243
+ # specifying `PUBLIC` for `Visibility` returns the desired list.
5216
5244
  # @return [Types::TypeFilters]
5217
5245
  #
5218
5246
  # @!attribute [rw] max_results
@@ -5296,6 +5324,42 @@ module Aws::CloudFormation
5296
5324
  include Aws::Structure
5297
5325
  end
5298
5326
 
5327
+ # Describes whether StackSets performs non-conflicting operations
5328
+ # concurrently and queues conflicting operations.
5329
+ #
5330
+ # @note When making an API call, you may pass ManagedExecution
5331
+ # data as a hash:
5332
+ #
5333
+ # {
5334
+ # active: false,
5335
+ # }
5336
+ #
5337
+ # @!attribute [rw] active
5338
+ # When `true`, StackSets performs non-conflicting operations
5339
+ # concurrently and queues conflicting operations. After conflicting
5340
+ # operations finish, StackSets starts queued operations in request
5341
+ # order.
5342
+ #
5343
+ # <note markdown="1"> If there are already running or queued operations, StackSets queues
5344
+ # all incoming operations even if they are non-conflicting.
5345
+ #
5346
+ # You can't modify your stack set's execution configuration while
5347
+ # there are running or queued operations for that stack set.
5348
+ #
5349
+ # </note>
5350
+ #
5351
+ # When `false` (default), StackSets performs one operation at a time
5352
+ # in request order.
5353
+ # @return [Boolean]
5354
+ #
5355
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ManagedExecution AWS API Documentation
5356
+ #
5357
+ class ManagedExecution < Struct.new(
5358
+ :active)
5359
+ SENSITIVE = []
5360
+ include Aws::Structure
5361
+ end
5362
+
5299
5363
  # Contains information about the module from which the resource was
5300
5364
  # created, if the resource was created from a module included in the
5301
5365
  # stack template.
@@ -5435,8 +5499,8 @@ module Aws::CloudFormation
5435
5499
  # @return [Boolean]
5436
5500
  #
5437
5501
  # @!attribute [rw] resolved_value
5438
- # Read-only. The value that corresponds to a Systems Manager parameter
5439
- # key. This field is returned only for [ `SSM` parameter types][1] in
5502
+ # Read-only. Read-only. The value that corresponds to a SSM parameter
5503
+ # key. This field is returned only for [ `SSM` ][1] parameter types in
5440
5504
  # the template.
5441
5505
  #
5442
5506
  #
@@ -5624,8 +5688,9 @@ module Aws::CloudFormation
5624
5688
  # If you do not specify a version number, CloudFormation increments
5625
5689
  # the version number by one minor version release.
5626
5690
  #
5627
- # The first time you publish a type, CloudFormation sets the version
5628
- # number to `1.0.0`, regardless of the value you specify.
5691
+ # You cannot specify a version number the first time you publish a
5692
+ # type. CloudFormation automatically sets the first version number to
5693
+ # be `1.0.0`.
5629
5694
  #
5630
5695
  #
5631
5696
  #
@@ -6414,12 +6479,14 @@ module Aws::CloudFormation
6414
6479
  # @return [String]
6415
6480
  #
6416
6481
  # @!attribute [rw] type
6417
- # The resource type of the rollback trigger. Currently,
6418
- # [AWS::CloudWatch::Alarm][1] is the only supported resource type.
6482
+ # The resource type of the rollback trigger. Specify either
6483
+ # [AWS::CloudWatch::Alarm][1] or [AWS::CloudWatch::CompositeAlarm][2]
6484
+ # resource types.
6419
6485
  #
6420
6486
  #
6421
6487
  #
6422
6488
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html
6489
+ # [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html
6423
6490
  # @return [String]
6424
6491
  #
6425
6492
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger AWS API Documentation
@@ -7861,6 +7928,11 @@ module Aws::CloudFormation
7861
7928
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
7862
7929
  # @return [Array<String>]
7863
7930
  #
7931
+ # @!attribute [rw] managed_execution
7932
+ # Describes whether StackSets performs non-conflicting operations
7933
+ # concurrently and queues conflicting operations.
7934
+ # @return [Types::ManagedExecution]
7935
+ #
7864
7936
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
7865
7937
  #
7866
7938
  class StackSet < Struct.new(
@@ -7878,7 +7950,8 @@ module Aws::CloudFormation
7878
7950
  :stack_set_drift_detection_details,
7879
7951
  :auto_deployment,
7880
7952
  :permission_model,
7881
- :organizational_unit_ids)
7953
+ :organizational_unit_ids,
7954
+ :managed_execution)
7882
7955
  SENSITIVE = []
7883
7956
  include Aws::Structure
7884
7957
  end
@@ -8481,6 +8554,11 @@ module Aws::CloudFormation
8481
8554
  # set on which drift detection has not yet been performed.
8482
8555
  # @return [Time]
8483
8556
  #
8557
+ # @!attribute [rw] managed_execution
8558
+ # Describes whether StackSets performs non-conflicting operations
8559
+ # concurrently and queues conflicting operations.
8560
+ # @return [Types::ManagedExecution]
8561
+ #
8484
8562
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetSummary AWS API Documentation
8485
8563
  #
8486
8564
  class StackSetSummary < Struct.new(
@@ -8491,7 +8569,8 @@ module Aws::CloudFormation
8491
8569
  :auto_deployment,
8492
8570
  :permission_model,
8493
8571
  :drift_status,
8494
- :last_drift_check_timestamp)
8572
+ :last_drift_check_timestamp,
8573
+ :managed_execution)
8495
8574
  SENSITIVE = []
8496
8575
  include Aws::Structure
8497
8576
  end
@@ -8963,7 +9042,7 @@ module Aws::CloudFormation
8963
9042
  # * `ACTIVATED`\: Public extensions that have been activated for this
8964
9043
  # account and region.
8965
9044
  #
8966
- # * `THIRD-PARTY`\: Extensions available for use from publishers other
9045
+ # * `THIRD_PARTY`\: Extensions available for use from publishers other
8967
9046
  # than Amazon. This includes:
8968
9047
  #
8969
9048
  # * Private extensions registered in the account.
@@ -8971,14 +9050,14 @@ module Aws::CloudFormation
8971
9050
  # * Public extensions from publishers other than Amazon, whether
8972
9051
  # activated or not.
8973
9052
  #
8974
- # * `AWS-TYPES`\: Extensions available for use from Amazon.
9053
+ # * `AWS_TYPES`\: Extensions available for use from Amazon.
8975
9054
  # @return [String]
8976
9055
  #
8977
9056
  # @!attribute [rw] publisher_id
8978
9057
  # The id of the publisher of the extension.
8979
9058
  #
8980
9059
  # Extensions published by Amazon are not assigned a publisher ID. Use
8981
- # the `AWS-TYPES` category to specify a list of types published by
9060
+ # the `AWS_TYPE` category to specify a list of types published by
8982
9061
  # Amazon.
8983
9062
  # @return [String]
8984
9063
  #
@@ -9816,6 +9895,9 @@ module Aws::CloudFormation
9816
9895
  # accounts: ["Account"],
9817
9896
  # regions: ["Region"],
9818
9897
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
9898
+ # managed_execution: {
9899
+ # active: false,
9900
+ # },
9819
9901
  # }
9820
9902
  #
9821
9903
  # @!attribute [rw] stack_set_name
@@ -10152,6 +10234,11 @@ module Aws::CloudFormation
10152
10234
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
10153
10235
  # @return [String]
10154
10236
  #
10237
+ # @!attribute [rw] managed_execution
10238
+ # Describes whether StackSets performs non-conflicting operations
10239
+ # concurrently and queues conflicting operations.
10240
+ # @return [Types::ManagedExecution]
10241
+ #
10155
10242
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSetInput AWS API Documentation
10156
10243
  #
10157
10244
  class UpdateStackSetInput < Struct.new(
@@ -10172,7 +10259,8 @@ module Aws::CloudFormation
10172
10259
  :operation_id,
10173
10260
  :accounts,
10174
10261
  :regions,
10175
- :call_as)
10262
+ :call_as,
10263
+ :managed_execution)
10176
10264
  SENSITIVE = []
10177
10265
  include Aws::Structure
10178
10266
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
53
53
  # @!group service
54
54
  module Aws::CloudFormation
55
55
 
56
- GEM_VERSION = '1.60.0'
56
+ GEM_VERSION = '1.64.0'
57
57
 
58
58
  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.60.0
4
+ version: 1.64.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: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.122.0
22
+ version: 3.125.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.122.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement