aws-sdk-cloudformation 1.61.0 → 1.62.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: 6c4f1d228144e05293b7934b2d2bf4e9de8ec819c498c6865c4034238f8a7053
4
- data.tar.gz: a0acaad90835492c48849160b4b09ffba9ece980a6b8dd9a14ad0b24cfd7159b
3
+ metadata.gz: 1e1132225800a614e0716f734c057f6ff912efb56be1a49530cf571933420eb8
4
+ data.tar.gz: 0c11057d0c4c5cd178b8025ba3491cbc88b27847d998de5a6fbc2db1da4c0605
5
5
  SHA512:
6
- metadata.gz: 2551e8f55125a465a790beb1336d6a522e0237a00825976ef17116472290d6bb220524e87f4c26f6e8ab4bb8ed1f0c23776ef291fb58dd540106caf01f1cd70e
7
- data.tar.gz: 9d9acfd1b1a71c67d6dc508ca3fbd70e09bbe89c1b6e94454c677678f60f70a990d136c41bb3092e539ae7631749bf2df129b1bcec7055122c71438e8621578b
6
+ metadata.gz: efb614c0cf7d2aeafccbf6a81c8795a12293e4d3e1289d4223e1e49adf1f2aa5dbe7ff167d100d45d6a334aed403f0000c41851dd185124d06aaecf66c53542f
7
+ data.tar.gz: 18636c20f6a5ebda89e4e7b4b6c765b31cff49db61322e6ec2f39d260a09a0885316721bfe47ec6087e12dd9c367e9167dc2c9bac8978d7cfbbf72a540a71ed1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2021-11-22)
5
+ ------------------
6
+
7
+ * Feature - This release include SDK changes for the feature launch of Stack Import to Service Managed StackSet.
8
+
4
9
  1.61.0 (2021-11-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -3828,25 +3828,34 @@ module Aws::CloudFormation
3828
3828
  req.send_request(options)
3829
3829
  end
3830
3830
 
3831
- # Import existing stacks into a new stack sets. Use the stack import
3832
- # operation to import up to 10 stacks into a new stack set in the same
3833
- # account as the source stack or in a different administrator account
3834
- # and Region, by specifying the stack ID of the stack you intend to
3835
- # import.
3836
- #
3837
- # <note markdown="1"> `ImportStacksToStackSet` is only supported by self-managed
3838
- # permissions.
3839
- #
3840
- # </note>
3831
+ # Use the stack import operations for self-managed or service-managed
3832
+ # StackSets. For self-managed StackSets, the import operation can import
3833
+ # stacks in the administrator account or in different target accounts
3834
+ # and Amazon Web Services Regions. For service-managed StackSets, the
3835
+ # import operation can import any stack in the same AWS Organizations as
3836
+ # the management account. The import operation can import up to 10
3837
+ # stacks using inline stack IDs or up to 10,000 stacks using an Amazon
3838
+ # S3 object.
3841
3839
  #
3842
3840
  # @option params [required, String] :stack_set_name
3843
3841
  # The name of the stack set. The name must be unique in the Region where
3844
3842
  # you create your stack set.
3845
3843
  #
3846
- # @option params [required, Array<String>] :stack_ids
3844
+ # @option params [Array<String>] :stack_ids
3847
3845
  # The IDs of the stacks you are importing into a stack set. You import
3848
3846
  # up to 10 stacks per stack set at a time.
3849
3847
  #
3848
+ # Specify either `StackIds` or `StackIdsUrl`.
3849
+ #
3850
+ # @option params [String] :stack_ids_url
3851
+ # The Amazon S3 URL which contains list of stack ids to be inputted.
3852
+ #
3853
+ # Specify either `StackIds` or `StackIdsUrl`.
3854
+ #
3855
+ # @option params [Array<String>] :organizational_unit_ids
3856
+ # The list of OU ID’s to which the stacks being imported has to be
3857
+ # mapped as deployment target.
3858
+ #
3850
3859
  # @option params [Types::StackSetOperationPreferences] :operation_preferences
3851
3860
  # The user-specified preferences for how CloudFormation performs a stack
3852
3861
  # set operation.
@@ -3880,7 +3889,9 @@ module Aws::CloudFormation
3880
3889
  #
3881
3890
  # resp = client.import_stacks_to_stack_set({
3882
3891
  # stack_set_name: "StackSetNameOrId", # required
3883
- # stack_ids: ["StackId"], # required
3892
+ # stack_ids: ["StackId"],
3893
+ # stack_ids_url: "StackIdsUrl",
3894
+ # organizational_unit_ids: ["OrganizationalUnitId"],
3884
3895
  # operation_preferences: {
3885
3896
  # region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
3886
3897
  # region_order: ["Region"],
@@ -6665,7 +6676,7 @@ module Aws::CloudFormation
6665
6676
  params: params,
6666
6677
  config: config)
6667
6678
  context[:gem_name] = 'aws-sdk-cloudformation'
6668
- context[:gem_version] = '1.61.0'
6679
+ context[:gem_version] = '1.62.0'
6669
6680
  Seahorse::Client::Request.new(handlers, context)
6670
6681
  end
6671
6682
 
@@ -327,6 +327,7 @@ module Aws::CloudFormation
327
327
  StackEvents = Shapes::ListShape.new(name: 'StackEvents')
328
328
  StackId = Shapes::StringShape.new(name: 'StackId')
329
329
  StackIdList = Shapes::ListShape.new(name: 'StackIdList')
330
+ StackIdsUrl = Shapes::StringShape.new(name: 'StackIdsUrl')
330
331
  StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
331
332
  StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
332
333
  StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
@@ -920,7 +921,9 @@ module Aws::CloudFormation
920
921
  GetTemplateSummaryOutput.struct_class = Types::GetTemplateSummaryOutput
921
922
 
922
923
  ImportStacksToStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
923
- 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"))
924
927
  ImportStacksToStackSetInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
925
928
  ImportStacksToStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
926
929
  ImportStacksToStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
@@ -4189,7 +4189,9 @@ module Aws::CloudFormation
4189
4189
  #
4190
4190
  # {
4191
4191
  # stack_set_name: "StackSetNameOrId", # required
4192
- # stack_ids: ["StackId"], # required
4192
+ # stack_ids: ["StackId"],
4193
+ # stack_ids_url: "StackIdsUrl",
4194
+ # organizational_unit_ids: ["OrganizationalUnitId"],
4193
4195
  # operation_preferences: {
4194
4196
  # region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
4195
4197
  # region_order: ["Region"],
@@ -4210,6 +4212,19 @@ module Aws::CloudFormation
4210
4212
  # @!attribute [rw] stack_ids
4211
4213
  # The IDs of the stacks you are importing into a stack set. You import
4212
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.
4213
4228
  # @return [Array<String>]
4214
4229
  #
4215
4230
  # @!attribute [rw] operation_preferences
@@ -4245,6 +4260,8 @@ module Aws::CloudFormation
4245
4260
  class ImportStacksToStackSetInput < Struct.new(
4246
4261
  :stack_set_name,
4247
4262
  :stack_ids,
4263
+ :stack_ids_url,
4264
+ :organizational_unit_ids,
4248
4265
  :operation_preferences,
4249
4266
  :operation_id,
4250
4267
  :call_as)
@@ -5482,8 +5499,8 @@ module Aws::CloudFormation
5482
5499
  # @return [Boolean]
5483
5500
  #
5484
5501
  # @!attribute [rw] resolved_value
5485
- # Read-only. The value that corresponds to a Systems Manager parameter
5486
- # 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
5487
5504
  # the template.
5488
5505
  #
5489
5506
  #
@@ -6462,12 +6479,14 @@ module Aws::CloudFormation
6462
6479
  # @return [String]
6463
6480
  #
6464
6481
  # @!attribute [rw] type
6465
- # The resource type of the rollback trigger. Currently,
6466
- # [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.
6467
6485
  #
6468
6486
  #
6469
6487
  #
6470
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
6471
6490
  # @return [String]
6472
6491
  #
6473
6492
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger AWS API Documentation
@@ -9023,7 +9042,7 @@ module Aws::CloudFormation
9023
9042
  # * `ACTIVATED`\: Public extensions that have been activated for this
9024
9043
  # account and region.
9025
9044
  #
9026
- # * `THIRD-PARTY`\: Extensions available for use from publishers other
9045
+ # * `THIRD_PARTY`\: Extensions available for use from publishers other
9027
9046
  # than Amazon. This includes:
9028
9047
  #
9029
9048
  # * Private extensions registered in the account.
@@ -9031,14 +9050,14 @@ module Aws::CloudFormation
9031
9050
  # * Public extensions from publishers other than Amazon, whether
9032
9051
  # activated or not.
9033
9052
  #
9034
- # * `AWS-TYPES`\: Extensions available for use from Amazon.
9053
+ # * `AWS_TYPES`\: Extensions available for use from Amazon.
9035
9054
  # @return [String]
9036
9055
  #
9037
9056
  # @!attribute [rw] publisher_id
9038
9057
  # The id of the publisher of the extension.
9039
9058
  #
9040
9059
  # Extensions published by Amazon are not assigned a publisher ID. Use
9041
- # 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
9042
9061
  # Amazon.
9043
9062
  # @return [String]
9044
9063
  #
@@ -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.61.0'
56
+ GEM_VERSION = '1.62.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.61.0
4
+ version: 1.62.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-19 00:00:00.000000000 Z
11
+ date: 2021-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core