aws-sdk-cloudformation 1.57.0 → 1.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 133b0de8ad2e7bd50bb5c6bd718b18b2d878656aa3aea3f01f9c2a1bd4713f5a
4
- data.tar.gz: 9aa482d290fc3f268688574e9c2f159f862a15fb4118a73dc8ab326cc91c12dc
3
+ metadata.gz: 6c4f1d228144e05293b7934b2d2bf4e9de8ec819c498c6865c4034238f8a7053
4
+ data.tar.gz: a0acaad90835492c48849160b4b09ffba9ece980a6b8dd9a14ad0b24cfd7159b
5
5
  SHA512:
6
- metadata.gz: 8c95dc8274574fc3768f7e6844b5a0440c162e274d3c10ad2a336a2e9fca04f588d05af341c582bc4f3253c5c9a56d607be6c0b5f3769c4b88aa0474f007aa59
7
- data.tar.gz: 82e56f64aca49d169298778430d67cc2a08c7ade96776a4241574356455863fa792e2b30f635f4cae0ccad90864eaa1589b0525ea826e4c2c0db09e769b5b344
6
+ metadata.gz: 2551e8f55125a465a790beb1336d6a522e0237a00825976ef17116472290d6bb220524e87f4c26f6e8ab4bb8ed1f0c23776ef291fb58dd540106caf01f1cd70e
7
+ data.tar.gz: 9d9acfd1b1a71c67d6dc508ca3fbd70e09bbe89c1b6e94454c677678f60f70a990d136c41bb3092e539ae7631749bf2df129b1bcec7055122c71438e8621578b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2021-11-19)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.60.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.59.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.58.0 (2021-09-10)
20
+ ------------------
21
+
22
+ * Feature - Doc only update for CloudFormation that fixes several customer-reported issues.
23
+
4
24
  1.57.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.61.0
@@ -275,6 +275,15 @@ module Aws::CloudFormation
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -1665,6 +1674,10 @@ module Aws::CloudFormation
1665
1674
  # **A suitable default value is auto-generated.** You should normally
1666
1675
  # not need to pass this option.**
1667
1676
  #
1677
+ # @option params [Types::ManagedExecution] :managed_execution
1678
+ # Describes whether StackSets performs non-conflicting operations
1679
+ # concurrently and queues conflicting operations.
1680
+ #
1668
1681
  # @return [Types::CreateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1669
1682
  #
1670
1683
  # * {Types::CreateStackSetOutput#stack_set_id #stack_set_id} => String
@@ -1701,6 +1714,9 @@ module Aws::CloudFormation
1701
1714
  # },
1702
1715
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
1703
1716
  # client_request_token: "ClientRequestToken",
1717
+ # managed_execution: {
1718
+ # active: false,
1719
+ # },
1704
1720
  # })
1705
1721
  #
1706
1722
  # @example Response structure
@@ -2581,9 +2597,9 @@ module Aws::CloudFormation
2581
2597
  # configuration drift.
2582
2598
  #
2583
2599
  # For a given stack, there will be one `StackResourceDrift` for each
2584
- # stack resource that has been checked for drift. Resources that have
2585
- # not yet been checked for drift are not included. Resources that do not
2586
- # currently support drift detection are not checked, and so not
2600
+ # stack resource that has been checked for drift. Resources that
2601
+ # haven't yet been checked for drift are not included. Resources that
2602
+ # do not currently support drift detection are not checked, and so not
2587
2603
  # included. For a list of resources that support drift detection, see
2588
2604
  # [Resources that Support Drift Detection][1].
2589
2605
  #
@@ -2842,6 +2858,7 @@ module Aws::CloudFormation
2842
2858
  # resp.stack_set.permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
2843
2859
  # resp.stack_set.organizational_unit_ids #=> Array
2844
2860
  # resp.stack_set.organizational_unit_ids[0] #=> String
2861
+ # resp.stack_set.managed_execution.active #=> Boolean
2845
2862
  #
2846
2863
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
2847
2864
  #
@@ -2939,8 +2956,7 @@ module Aws::CloudFormation
2939
2956
  # Returns the description for the specified stack; if no stack name was
2940
2957
  # specified, then it returns the description for all the stacks created.
2941
2958
  #
2942
- # <note markdown="1"> If the stack does not exist, an `AmazonCloudFormationException` is
2943
- # returned.
2959
+ # <note markdown="1"> If the stack does not exist, an `ValidationError` is returned.
2944
2960
  #
2945
2961
  # </note>
2946
2962
  #
@@ -4448,6 +4464,7 @@ module Aws::CloudFormation
4448
4464
  # resp.summaries[0].permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
4449
4465
  # resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
4450
4466
  # resp.summaries[0].last_drift_check_timestamp #=> Time
4467
+ # resp.summaries[0].managed_execution.active #=> Boolean
4451
4468
  # resp.next_token #=> String
4452
4469
  #
4453
4470
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets AWS API Documentation
@@ -4741,8 +4758,10 @@ module Aws::CloudFormation
4741
4758
  # @option params [Types::TypeFilters] :filters
4742
4759
  # Filter criteria to use in determining which extensions to return.
4743
4760
  #
4744
- # If you specify a filter, CloudFormation ignores any specified
4745
- # `Visibility` value when returning the list of types.
4761
+ # Filters must be compatible with `Visibility` to return valid results.
4762
+ # For example, specifying `AWS_TYPES` for `Category` and `PRIVATE` for
4763
+ # `Visibility` returns an empty list of types, but specifying `PUBLIC`
4764
+ # for `Visibility` returns the desired list.
4746
4765
  #
4747
4766
  # @option params [Integer] :max_results
4748
4767
  # The maximum number of results to be returned with a single call. If
@@ -4850,8 +4869,9 @@ module Aws::CloudFormation
4850
4869
  # If you do not specify a version number, CloudFormation increments the
4851
4870
  # version number by one minor version release.
4852
4871
  #
4853
- # The first time you publish a type, CloudFormation sets the version
4854
- # number to `1.0.0`, regardless of the value you specify.
4872
+ # You cannot specify a version number the first time you publish a type.
4873
+ # CloudFormation automatically sets the first version number to be
4874
+ # `1.0.0`.
4855
4875
  #
4856
4876
  #
4857
4877
  #
@@ -6446,6 +6466,10 @@ module Aws::CloudFormation
6446
6466
  #
6447
6467
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
6448
6468
  #
6469
+ # @option params [Types::ManagedExecution] :managed_execution
6470
+ # Describes whether StackSets performs non-conflicting operations
6471
+ # concurrently and queues conflicting operations.
6472
+ #
6449
6473
  # @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6450
6474
  #
6451
6475
  # * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
@@ -6497,6 +6521,9 @@ module Aws::CloudFormation
6497
6521
  # accounts: ["Account"],
6498
6522
  # regions: ["Region"],
6499
6523
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
6524
+ # managed_execution: {
6525
+ # active: false,
6526
+ # },
6500
6527
  # })
6501
6528
  #
6502
6529
  # @example Response structure
@@ -6638,7 +6665,7 @@ module Aws::CloudFormation
6638
6665
  params: params,
6639
6666
  config: config)
6640
6667
  context[:gem_name] = 'aws-sdk-cloudformation'
6641
- context[:gem_version] = '1.57.0'
6668
+ context[:gem_version] = '1.61.0'
6642
6669
  Seahorse::Client::Request.new(handlers, context)
6643
6670
  end
6644
6671
 
@@ -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')
@@ -614,6 +616,7 @@ module Aws::CloudFormation
614
616
  CreateStackSetInput.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
615
617
  CreateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
616
618
  CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
619
+ CreateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
617
620
  CreateStackSetInput.struct_class = Types::CreateStackSetInput
618
621
 
619
622
  CreateStackSetOutput.add_member(:stack_set_id, Shapes::ShapeRef.new(shape: StackSetId, location_name: "StackSetId"))
@@ -1065,6 +1068,9 @@ module Aws::CloudFormation
1065
1068
 
1066
1069
  LogicalResourceIds.member = Shapes::ShapeRef.new(shape: LogicalResourceId)
1067
1070
 
1071
+ ManagedExecution.add_member(:active, Shapes::ShapeRef.new(shape: ManagedExecutionNullable, location_name: "Active"))
1072
+ ManagedExecution.struct_class = Types::ManagedExecution
1073
+
1068
1074
  ModuleInfo.add_member(:type_hierarchy, Shapes::ShapeRef.new(shape: TypeHierarchy, location_name: "TypeHierarchy"))
1069
1075
  ModuleInfo.add_member(:logical_id_hierarchy, Shapes::ShapeRef.new(shape: LogicalIdHierarchy, location_name: "LogicalIdHierarchy"))
1070
1076
  ModuleInfo.struct_class = Types::ModuleInfo
@@ -1444,6 +1450,7 @@ module Aws::CloudFormation
1444
1450
  StackSet.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
1445
1451
  StackSet.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
1446
1452
  StackSet.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
1453
+ StackSet.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1447
1454
  StackSet.struct_class = Types::StackSet
1448
1455
 
1449
1456
  StackSetDriftDetectionDetails.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackSetDriftStatus, location_name: "DriftStatus"))
@@ -1511,6 +1518,7 @@ module Aws::CloudFormation
1511
1518
  StackSetSummary.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
1512
1519
  StackSetSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
1513
1520
  StackSetSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
1521
+ StackSetSummary.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1514
1522
  StackSetSummary.struct_class = Types::StackSetSummary
1515
1523
 
1516
1524
  StackStatusFilter.member = Shapes::ShapeRef.new(shape: StackStatus)
@@ -1686,6 +1694,7 @@ module Aws::CloudFormation
1686
1694
  UpdateStackSetInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
1687
1695
  UpdateStackSetInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
1688
1696
  UpdateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
1697
+ UpdateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1689
1698
  UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
1690
1699
 
1691
1700
  UpdateStackSetOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
@@ -14,7 +14,7 @@ module Aws::CloudFormation
14
14
  # CloudFormation invokes, if present, before proceeding with a stack set
15
15
  # operation in an account and Region.
16
16
  #
17
- # For each account and Region, CloudFormation lets you specify a Lamdba
17
+ # For each account and Region, CloudFormation lets you specify a Lambda
18
18
  # function that encapsulates any requirements that must be met before
19
19
  # CloudFormation can proceed with a stack set operation in that account
20
20
  # and Region. CloudFormation invokes the function each time a stack set
@@ -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
@@ -4113,10 +4122,10 @@ module Aws::CloudFormation
4113
4122
  #
4114
4123
  # @!attribute [rw] capabilities
4115
4124
  # The capabilities found within the template. If your template
4116
- # contains IAM resources, you must specify the CAPABILITY\_IAM or
4117
- # CAPABILITY\_NAMED\_IAM value for this parameter when you use the
4125
+ # contains IAM resources, you must specify the `CAPABILITY_IAM` or
4126
+ # `CAPABILITY_NAMED_IAM` value for this parameter when you use the
4118
4127
  # CreateStack or UpdateStack actions with your template; otherwise,
4119
- # those actions return an InsufficientCapabilities error.
4128
+ # those actions return an `InsufficientCapabilities` error.
4120
4129
  #
4121
4130
  # For more information, see [Acknowledging IAM Resources in
4122
4131
  # CloudFormation Templates][1].
@@ -5211,8 +5220,10 @@ module Aws::CloudFormation
5211
5220
  # @!attribute [rw] filters
5212
5221
  # Filter criteria to use in determining which extensions to return.
5213
5222
  #
5214
- # If you specify a filter, CloudFormation ignores any specified
5215
- # `Visibility` value when returning the list of types.
5223
+ # Filters must be compatible with `Visibility` to return valid
5224
+ # results. For example, specifying `AWS_TYPES` for `Category` and
5225
+ # `PRIVATE` for `Visibility` returns an empty list of types, but
5226
+ # specifying `PUBLIC` for `Visibility` returns the desired list.
5216
5227
  # @return [Types::TypeFilters]
5217
5228
  #
5218
5229
  # @!attribute [rw] max_results
@@ -5296,6 +5307,42 @@ module Aws::CloudFormation
5296
5307
  include Aws::Structure
5297
5308
  end
5298
5309
 
5310
+ # Describes whether StackSets performs non-conflicting operations
5311
+ # concurrently and queues conflicting operations.
5312
+ #
5313
+ # @note When making an API call, you may pass ManagedExecution
5314
+ # data as a hash:
5315
+ #
5316
+ # {
5317
+ # active: false,
5318
+ # }
5319
+ #
5320
+ # @!attribute [rw] active
5321
+ # When `true`, StackSets performs non-conflicting operations
5322
+ # concurrently and queues conflicting operations. After conflicting
5323
+ # operations finish, StackSets starts queued operations in request
5324
+ # order.
5325
+ #
5326
+ # <note markdown="1"> If there are already running or queued operations, StackSets queues
5327
+ # all incoming operations even if they are non-conflicting.
5328
+ #
5329
+ # You can't modify your stack set's execution configuration while
5330
+ # there are running or queued operations for that stack set.
5331
+ #
5332
+ # </note>
5333
+ #
5334
+ # When `false` (default), StackSets performs one operation at a time
5335
+ # in request order.
5336
+ # @return [Boolean]
5337
+ #
5338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ManagedExecution AWS API Documentation
5339
+ #
5340
+ class ManagedExecution < Struct.new(
5341
+ :active)
5342
+ SENSITIVE = []
5343
+ include Aws::Structure
5344
+ end
5345
+
5299
5346
  # Contains information about the module from which the resource was
5300
5347
  # created, if the resource was created from a module included in the
5301
5348
  # stack template.
@@ -5624,8 +5671,9 @@ module Aws::CloudFormation
5624
5671
  # If you do not specify a version number, CloudFormation increments
5625
5672
  # the version number by one minor version release.
5626
5673
  #
5627
- # The first time you publish a type, CloudFormation sets the version
5628
- # number to `1.0.0`, regardless of the value you specify.
5674
+ # You cannot specify a version number the first time you publish a
5675
+ # type. CloudFormation automatically sets the first version number to
5676
+ # be `1.0.0`.
5629
5677
  #
5630
5678
  #
5631
5679
  #
@@ -7861,6 +7909,11 @@ module Aws::CloudFormation
7861
7909
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
7862
7910
  # @return [Array<String>]
7863
7911
  #
7912
+ # @!attribute [rw] managed_execution
7913
+ # Describes whether StackSets performs non-conflicting operations
7914
+ # concurrently and queues conflicting operations.
7915
+ # @return [Types::ManagedExecution]
7916
+ #
7864
7917
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
7865
7918
  #
7866
7919
  class StackSet < Struct.new(
@@ -7878,7 +7931,8 @@ module Aws::CloudFormation
7878
7931
  :stack_set_drift_detection_details,
7879
7932
  :auto_deployment,
7880
7933
  :permission_model,
7881
- :organizational_unit_ids)
7934
+ :organizational_unit_ids,
7935
+ :managed_execution)
7882
7936
  SENSITIVE = []
7883
7937
  include Aws::Structure
7884
7938
  end
@@ -8481,6 +8535,11 @@ module Aws::CloudFormation
8481
8535
  # set on which drift detection has not yet been performed.
8482
8536
  # @return [Time]
8483
8537
  #
8538
+ # @!attribute [rw] managed_execution
8539
+ # Describes whether StackSets performs non-conflicting operations
8540
+ # concurrently and queues conflicting operations.
8541
+ # @return [Types::ManagedExecution]
8542
+ #
8484
8543
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetSummary AWS API Documentation
8485
8544
  #
8486
8545
  class StackSetSummary < Struct.new(
@@ -8491,7 +8550,8 @@ module Aws::CloudFormation
8491
8550
  :auto_deployment,
8492
8551
  :permission_model,
8493
8552
  :drift_status,
8494
- :last_drift_check_timestamp)
8553
+ :last_drift_check_timestamp,
8554
+ :managed_execution)
8495
8555
  SENSITIVE = []
8496
8556
  include Aws::Structure
8497
8557
  end
@@ -9816,6 +9876,9 @@ module Aws::CloudFormation
9816
9876
  # accounts: ["Account"],
9817
9877
  # regions: ["Region"],
9818
9878
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
9879
+ # managed_execution: {
9880
+ # active: false,
9881
+ # },
9819
9882
  # }
9820
9883
  #
9821
9884
  # @!attribute [rw] stack_set_name
@@ -10152,6 +10215,11 @@ module Aws::CloudFormation
10152
10215
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
10153
10216
  # @return [String]
10154
10217
  #
10218
+ # @!attribute [rw] managed_execution
10219
+ # Describes whether StackSets performs non-conflicting operations
10220
+ # concurrently and queues conflicting operations.
10221
+ # @return [Types::ManagedExecution]
10222
+ #
10155
10223
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSetInput AWS API Documentation
10156
10224
  #
10157
10225
  class UpdateStackSetInput < Struct.new(
@@ -10172,7 +10240,8 @@ module Aws::CloudFormation
10172
10240
  :operation_id,
10173
10241
  :accounts,
10174
10242
  :regions,
10175
- :call_as)
10243
+ :call_as,
10244
+ :managed_execution)
10176
10245
  SENSITIVE = []
10177
10246
  include Aws::Structure
10178
10247
  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.57.0'
56
+ GEM_VERSION = '1.61.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.57.0
4
+ version: 1.61.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-19 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement