aws-sdk-cloudformation 1.100.0 → 1.102.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: 31aae7c802c3dae8020267c3e5e3e78e3eeca8821c49808dc7dc059154ad15e6
4
- data.tar.gz: 2815a469449567f9c4bfcb0923a752ba208c176dc7f7a19e2f3ae8eb37f60ddf
3
+ metadata.gz: 5e8370b27119126eb875a0ae81933d87f068890dd3b3cc9b596532a3589e7e86
4
+ data.tar.gz: c9615dac798a30893625f8b2e819b0238fbd8b126acc8eab3a6cbcd9ae29c520
5
5
  SHA512:
6
- metadata.gz: bd7d8f71ac914752bc223433488eb950e6c5bdd3de43f17fb8c8fdd08818062fb0c74ea372f3e7d9477b305282789093896e5f8e55d0a5c02787d488970fd880
7
- data.tar.gz: 2b70226028580fc8fde285f20b861e2f575a17b9dcc8e9bf5234d1a50c9ea706af82522a4b0f82b32629efe4a3ee7464039273b6410e4886df3f0be19cfd1e54
6
+ metadata.gz: 4d1bbb5342d7521682bc01b782c7078da6474d57648820c4c9d5ee5dd75bed5c492804ebfdecfc5410d52c60b1b54f55686d57c76c8dc29cf5efd69beaf0b7dd
7
+ data.tar.gz: cef6cfafdc204df92793d7fe023930c2768bb0b6180acc392feb7189dfcd2773ae5146e0cd330aa8652e6712c33bf126d83e3e43d346da321287dea3411d6dfb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.102.0 (2024-03-18)
5
+ ------------------
6
+
7
+ * Feature - This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
8
+
9
+ 1.101.0 (2024-03-12)
10
+ ------------------
11
+
12
+ * Feature - CloudFormation documentation update for March, 2024
13
+
4
14
  1.100.0 (2024-03-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.102.0
@@ -1305,7 +1305,7 @@ module Aws::CloudFormation
1305
1305
  # you review all permissions associated with them and edit their
1306
1306
  # permissions if necessary.
1307
1307
  #
1308
- # * [ `AWS::IAM::AccessKey` AWS::IAM::AccessKey][1]
1308
+ # * [ `AWS::IAM::AccessKey` ][1]
1309
1309
  #
1310
1310
  # * [ `AWS::IAM::Group` ][2]
1311
1311
  #
@@ -1720,7 +1720,7 @@ module Aws::CloudFormation
1720
1720
  # @option params [String] :template_body
1721
1721
  # The structure that contains the template body, with a minimum length
1722
1722
  # of 1 byte and a maximum length of 51,200 bytes. For more information,
1723
- # see [Template Anatomy][1] in the CloudFormation User Guide.
1723
+ # see [Template Anatomy][1] in the *CloudFormation User Guide*.
1724
1724
  #
1725
1725
  # Conditional: You must specify either the TemplateBody or the
1726
1726
  # TemplateURL parameter, but not both.
@@ -1733,8 +1733,8 @@ module Aws::CloudFormation
1733
1733
  # The location of the file that contains the template body. The URL must
1734
1734
  # point to a template (maximum size: 460,800 bytes) that's located in
1735
1735
  # an Amazon S3 bucket or a Systems Manager document. For more
1736
- # information, see [Template Anatomy][1] in the CloudFormation User
1737
- # Guide.
1736
+ # information, see [Template Anatomy][1] in the *CloudFormation User
1737
+ # Guide*.
1738
1738
  #
1739
1739
  # Conditional: You must specify either the TemplateBody or the
1740
1740
  # TemplateURL parameter, but not both.
@@ -3045,7 +3045,8 @@ module Aws::CloudFormation
3045
3045
 
3046
3046
  # Returns all stack related events for a specified stack in reverse
3047
3047
  # chronological order. For more information about a stack's event
3048
- # history, go to [Stacks][1] in the *CloudFormation User Guide*.
3048
+ # history, see [CloudFormation stack creation events][1] in the
3049
+ # *CloudFormation User Guide*.
3049
3050
  #
3050
3051
  # <note markdown="1"> You can list events for stacks that have failed to create or have been
3051
3052
  # deleted by specifying the unique stack identifier (stack ID).
@@ -3054,7 +3055,7 @@ module Aws::CloudFormation
3054
3055
  #
3055
3056
  #
3056
3057
  #
3057
- # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html
3058
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
3058
3059
  #
3059
3060
  # @option params [String] :stack_name
3060
3061
  # The name or the unique stack ID that's associated with the stack,
@@ -3625,11 +3626,18 @@ module Aws::CloudFormation
3625
3626
 
3626
3627
  # Returns the description for the specified stack; if no stack name was
3627
3628
  # specified, then it returns the description for all the stacks created.
3629
+ # For more information about a stack's event history, see
3630
+ # [CloudFormation stack creation events][1] in the *CloudFormation User
3631
+ # Guide*.
3628
3632
  #
3629
3633
  # <note markdown="1"> If the stack doesn't exist, a `ValidationError` is returned.
3630
3634
  #
3631
3635
  # </note>
3632
3636
  #
3637
+ #
3638
+ #
3639
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
3640
+ #
3633
3641
  # @option params [String] :stack_name
3634
3642
  # <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
3635
3643
  # response that describes all resources in the account, which can impact
@@ -5566,6 +5574,75 @@ module Aws::CloudFormation
5566
5574
  req.send_request(options)
5567
5575
  end
5568
5576
 
5577
+ # Returns summary information about deployment targets for a stack set.
5578
+ #
5579
+ # @option params [required, String] :stack_set_name
5580
+ # The name or unique ID of the stack set that you want to get automatic
5581
+ # deployment targets for.
5582
+ #
5583
+ # @option params [String] :next_token
5584
+ # A string that identifies the next page of stack set deployment targets
5585
+ # that you want to retrieve.
5586
+ #
5587
+ # @option params [Integer] :max_results
5588
+ # The maximum number of results to be returned with a single call. If
5589
+ # the number of available results exceeds this maximum, the response
5590
+ # includes a `NextToken` value that you can assign to the `NextToken`
5591
+ # request parameter to get the next set of results.
5592
+ #
5593
+ # @option params [String] :call_as
5594
+ # Specifies whether you are acting as an account administrator in the
5595
+ # organization's management account or as a delegated administrator in
5596
+ # a member account.
5597
+ #
5598
+ # By default, `SELF` is specified. Use `SELF` for StackSets with
5599
+ # self-managed permissions.
5600
+ #
5601
+ # * If you are signed in to the management account, specify `SELF`.
5602
+ #
5603
+ # * If you are signed in to a delegated administrator account, specify
5604
+ # `DELEGATED_ADMIN`.
5605
+ #
5606
+ # Your Amazon Web Services account must be registered as a delegated
5607
+ # administrator in the management account. For more information, see
5608
+ # [Register a delegated administrator][1] in the *CloudFormation User
5609
+ # Guide*.
5610
+ #
5611
+ #
5612
+ #
5613
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
5614
+ #
5615
+ # @return [Types::ListStackSetAutoDeploymentTargetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5616
+ #
5617
+ # * {Types::ListStackSetAutoDeploymentTargetsOutput#summaries #summaries} => Array&lt;Types::StackSetAutoDeploymentTargetSummary&gt;
5618
+ # * {Types::ListStackSetAutoDeploymentTargetsOutput#next_token #next_token} => String
5619
+ #
5620
+ # @example Request syntax with placeholder values
5621
+ #
5622
+ # resp = client.list_stack_set_auto_deployment_targets({
5623
+ # stack_set_name: "StackSetNameOrId", # required
5624
+ # next_token: "NextToken",
5625
+ # max_results: 1,
5626
+ # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
5627
+ # })
5628
+ #
5629
+ # @example Response structure
5630
+ #
5631
+ # resp.summaries #=> Array
5632
+ # resp.summaries[0].organizational_unit_id #=> String
5633
+ # resp.summaries[0].regions #=> Array
5634
+ # resp.summaries[0].regions[0] #=> String
5635
+ # resp.next_token #=> String
5636
+ #
5637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetAutoDeploymentTargets AWS API Documentation
5638
+ #
5639
+ # @overload list_stack_set_auto_deployment_targets(params = {})
5640
+ # @param [Hash] params ({})
5641
+ def list_stack_set_auto_deployment_targets(params = {}, options = {})
5642
+ req = build_request(:list_stack_set_auto_deployment_targets, params)
5643
+ req.send_request(options)
5644
+ end
5645
+
5569
5646
  # Returns summary information about the results of a stack set
5570
5647
  # operation.
5571
5648
  #
@@ -7751,7 +7828,7 @@ module Aws::CloudFormation
7751
7828
  # @option params [String] :template_body
7752
7829
  # The structure that contains the template body, with a minimum length
7753
7830
  # of 1 byte and a maximum length of 51,200 bytes. For more information,
7754
- # see [Template Anatomy][1] in the CloudFormation User Guide.
7831
+ # see [Template Anatomy][1] in the *CloudFormation User Guide*.
7755
7832
  #
7756
7833
  # Conditional: You must specify only one of the following parameters:
7757
7834
  # `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
@@ -7764,8 +7841,8 @@ module Aws::CloudFormation
7764
7841
  # The location of the file that contains the template body. The URL must
7765
7842
  # point to a template (maximum size: 460,800 bytes) that is located in
7766
7843
  # an Amazon S3 bucket or a Systems Manager document. For more
7767
- # information, see [Template Anatomy][1] in the CloudFormation User
7768
- # Guide.
7844
+ # information, see [Template Anatomy][1] in the *CloudFormation User
7845
+ # Guide*.
7769
7846
  #
7770
7847
  # Conditional: You must specify only one of the following parameters:
7771
7848
  # `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
@@ -8251,7 +8328,7 @@ module Aws::CloudFormation
8251
8328
  params: params,
8252
8329
  config: config)
8253
8330
  context[:gem_name] = 'aws-sdk-cloudformation'
8254
- context[:gem_version] = '1.100.0'
8331
+ context[:gem_version] = '1.102.0'
8255
8332
  Seahorse::Client::Request.new(handlers, context)
8256
8333
  end
8257
8334
 
@@ -240,6 +240,8 @@ module Aws::CloudFormation
240
240
  ListStackInstancesOutput = Shapes::StructureShape.new(name: 'ListStackInstancesOutput')
241
241
  ListStackResourcesInput = Shapes::StructureShape.new(name: 'ListStackResourcesInput')
242
242
  ListStackResourcesOutput = Shapes::StructureShape.new(name: 'ListStackResourcesOutput')
243
+ ListStackSetAutoDeploymentTargetsInput = Shapes::StructureShape.new(name: 'ListStackSetAutoDeploymentTargetsInput')
244
+ ListStackSetAutoDeploymentTargetsOutput = Shapes::StructureShape.new(name: 'ListStackSetAutoDeploymentTargetsOutput')
243
245
  ListStackSetOperationResultsInput = Shapes::StructureShape.new(name: 'ListStackSetOperationResultsInput')
244
246
  ListStackSetOperationResultsOutput = Shapes::StructureShape.new(name: 'ListStackSetOperationResultsOutput')
245
247
  ListStackSetOperationsInput = Shapes::StructureShape.new(name: 'ListStackSetOperationsInput')
@@ -459,6 +461,8 @@ module Aws::CloudFormation
459
461
  StackResources = Shapes::ListShape.new(name: 'StackResources')
460
462
  StackSet = Shapes::StructureShape.new(name: 'StackSet')
461
463
  StackSetARN = Shapes::StringShape.new(name: 'StackSetARN')
464
+ StackSetAutoDeploymentTargetSummaries = Shapes::ListShape.new(name: 'StackSetAutoDeploymentTargetSummaries')
465
+ StackSetAutoDeploymentTargetSummary = Shapes::StructureShape.new(name: 'StackSetAutoDeploymentTargetSummary')
462
466
  StackSetDriftDetectionDetails = Shapes::StructureShape.new(name: 'StackSetDriftDetectionDetails')
463
467
  StackSetDriftDetectionStatus = Shapes::StringShape.new(name: 'StackSetDriftDetectionStatus')
464
468
  StackSetDriftStatus = Shapes::StringShape.new(name: 'StackSetDriftStatus')
@@ -1280,6 +1284,16 @@ module Aws::CloudFormation
1280
1284
  ListStackResourcesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1281
1285
  ListStackResourcesOutput.struct_class = Types::ListStackResourcesOutput
1282
1286
 
1287
+ ListStackSetAutoDeploymentTargetsInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
1288
+ ListStackSetAutoDeploymentTargetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1289
+ ListStackSetAutoDeploymentTargetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
1290
+ ListStackSetAutoDeploymentTargetsInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
1291
+ ListStackSetAutoDeploymentTargetsInput.struct_class = Types::ListStackSetAutoDeploymentTargetsInput
1292
+
1293
+ ListStackSetAutoDeploymentTargetsOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackSetAutoDeploymentTargetSummaries, location_name: "Summaries"))
1294
+ ListStackSetAutoDeploymentTargetsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1295
+ ListStackSetAutoDeploymentTargetsOutput.struct_class = Types::ListStackSetAutoDeploymentTargetsOutput
1296
+
1283
1297
  ListStackSetOperationResultsInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
1284
1298
  ListStackSetOperationResultsInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "OperationId"))
1285
1299
  ListStackSetOperationResultsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
@@ -1827,6 +1841,12 @@ module Aws::CloudFormation
1827
1841
  StackSet.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
1828
1842
  StackSet.struct_class = Types::StackSet
1829
1843
 
1844
+ StackSetAutoDeploymentTargetSummaries.member = Shapes::ShapeRef.new(shape: StackSetAutoDeploymentTargetSummary)
1845
+
1846
+ StackSetAutoDeploymentTargetSummary.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
1847
+ StackSetAutoDeploymentTargetSummary.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
1848
+ StackSetAutoDeploymentTargetSummary.struct_class = Types::StackSetAutoDeploymentTargetSummary
1849
+
1830
1850
  StackSetDriftDetectionDetails.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackSetDriftStatus, location_name: "DriftStatus"))
1831
1851
  StackSetDriftDetectionDetails.add_member(:drift_detection_status, Shapes::ShapeRef.new(shape: StackSetDriftDetectionStatus, location_name: "DriftDetectionStatus"))
1832
1852
  StackSetDriftDetectionDetails.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
@@ -2779,6 +2799,15 @@ module Aws::CloudFormation
2779
2799
  )
2780
2800
  end)
2781
2801
 
2802
+ api.add_operation(:list_stack_set_auto_deployment_targets, Seahorse::Model::Operation.new.tap do |o|
2803
+ o.name = "ListStackSetAutoDeploymentTargets"
2804
+ o.http_method = "POST"
2805
+ o.http_request_uri = "/"
2806
+ o.input = Shapes::ShapeRef.new(shape: ListStackSetAutoDeploymentTargetsInput)
2807
+ o.output = Shapes::ShapeRef.new(shape: ListStackSetAutoDeploymentTargetsOutput)
2808
+ o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
2809
+ end)
2810
+
2782
2811
  api.add_operation(:list_stack_set_operation_results, Seahorse::Model::Operation.new.tap do |o|
2783
2812
  o.name = "ListStackSetOperationResults"
2784
2813
  o.http_method = "POST"
@@ -796,6 +796,20 @@ module Aws::CloudFormation
796
796
  end
797
797
  end
798
798
 
799
+ class ListStackSetAutoDeploymentTargets
800
+ def self.build(context)
801
+ unless context.config.regional_endpoint
802
+ endpoint = context.config.endpoint.to_s
803
+ end
804
+ Aws::CloudFormation::EndpointParameters.new(
805
+ region: context.config.region,
806
+ use_dual_stack: context.config.use_dualstack_endpoint,
807
+ use_fips: context.config.use_fips_endpoint,
808
+ endpoint: endpoint,
809
+ )
810
+ end
811
+ end
812
+
799
813
  class ListStackSetOperationResults
800
814
  def self.build(context)
801
815
  unless context.config.regional_endpoint
@@ -61,7 +61,7 @@ module Aws::CloudFormation
61
61
  end
62
62
 
63
63
  # Type of resource. (For more information, go to [Amazon Web Services
64
- # Resource Types Reference][1] in the CloudFormation User Guide.)
64
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.)
65
65
  #
66
66
  #
67
67
  #
@@ -170,6 +170,8 @@ module Aws::CloudFormation
170
170
  Aws::CloudFormation::Endpoints::ListStackInstances.build(context)
171
171
  when :list_stack_resources
172
172
  Aws::CloudFormation::Endpoints::ListStackResources.build(context)
173
+ when :list_stack_set_auto_deployment_targets
174
+ Aws::CloudFormation::Endpoints::ListStackSetAutoDeploymentTargets.build(context)
173
175
  when :list_stack_set_operation_results
174
176
  Aws::CloudFormation::Endpoints::ListStackSetOperationResults.build(context)
175
177
  when :list_stack_set_operations
@@ -164,7 +164,7 @@ module Aws::CloudFormation
164
164
  # you review all permissions associated with them and edit their
165
165
  # permissions if necessary.
166
166
  #
167
- # * [ `AWS::IAM::AccessKey` AWS::IAM::AccessKey][1]
167
+ # * [ `AWS::IAM::AccessKey` ][1]
168
168
  #
169
169
  # * [ `AWS::IAM::Group` ][2]
170
170
  #
@@ -545,7 +545,7 @@ module Aws::CloudFormation
545
545
  # you review all permissions associated with them and edit their
546
546
  # permissions if necessary.
547
547
  #
548
- # * [ `AWS::IAM::AccessKey` AWS::IAM::AccessKey][1]
548
+ # * [ `AWS::IAM::AccessKey` ][1]
549
549
  #
550
550
  # * [ `AWS::IAM::Group` ][2]
551
551
  #
@@ -57,7 +57,7 @@ module Aws::CloudFormation
57
57
  end
58
58
 
59
59
  # Type of resource. For more information, go to [Amazon Web Services
60
- # Resource Types Reference][1] in the CloudFormation User Guide.
60
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.
61
61
  #
62
62
  #
63
63
  #
@@ -92,8 +92,8 @@ module Aws::CloudFormation
92
92
  end
93
93
 
94
94
  # The content of the `Metadata` attribute declared for the resource. For
95
- # more information, see [Metadata Attribute][1] in the CloudFormation
96
- # User Guide.
95
+ # more information, see [Metadata Attribute][1] in the *CloudFormation
96
+ # User Guide*.
97
97
  #
98
98
  #
99
99
  #
@@ -51,7 +51,7 @@ module Aws::CloudFormation
51
51
  end
52
52
 
53
53
  # Type of resource. (For more information, go to [Amazon Web Services
54
- # Resource Types Reference][1] in the CloudFormation User Guide.)
54
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.)
55
55
  #
56
56
  #
57
57
  #
@@ -1198,7 +1198,7 @@ module Aws::CloudFormation
1198
1198
  # you review all permissions associated with them and edit their
1199
1199
  # permissions if necessary.
1200
1200
  #
1201
- # * [ `AWS::IAM::AccessKey` AWS::IAM::AccessKey][1]
1201
+ # * [ `AWS::IAM::AccessKey` ][1]
1202
1202
  #
1203
1203
  # * [ `AWS::IAM::Group` ][2]
1204
1204
  #
@@ -1585,8 +1585,8 @@ module Aws::CloudFormation
1585
1585
  # @!attribute [rw] template_body
1586
1586
  # The structure that contains the template body, with a minimum length
1587
1587
  # of 1 byte and a maximum length of 51,200 bytes. For more
1588
- # information, see [Template Anatomy][1] in the CloudFormation User
1589
- # Guide.
1588
+ # information, see [Template Anatomy][1] in the *CloudFormation User
1589
+ # Guide*.
1590
1590
  #
1591
1591
  # Conditional: You must specify either the TemplateBody or the
1592
1592
  # TemplateURL parameter, but not both.
@@ -1600,8 +1600,8 @@ module Aws::CloudFormation
1600
1600
  # The location of the file that contains the template body. The URL
1601
1601
  # must point to a template (maximum size: 460,800 bytes) that's
1602
1602
  # located in an Amazon S3 bucket or a Systems Manager document. For
1603
- # more information, see [Template Anatomy][1] in the CloudFormation
1604
- # User Guide.
1603
+ # more information, see [Template Anatomy][1] in the *CloudFormation
1604
+ # User Guide*.
1605
1605
  #
1606
1606
  # Conditional: You must specify either the TemplateBody or the
1607
1607
  # TemplateURL parameter, but not both.
@@ -5185,6 +5185,82 @@ module Aws::CloudFormation
5185
5185
  include Aws::Structure
5186
5186
  end
5187
5187
 
5188
+ # @!attribute [rw] stack_set_name
5189
+ # The name or unique ID of the stack set that you want to get
5190
+ # automatic deployment targets for.
5191
+ # @return [String]
5192
+ #
5193
+ # @!attribute [rw] next_token
5194
+ # A string that identifies the next page of stack set deployment
5195
+ # targets that you want to retrieve.
5196
+ # @return [String]
5197
+ #
5198
+ # @!attribute [rw] max_results
5199
+ # The maximum number of results to be returned with a single call. If
5200
+ # the number of available results exceeds this maximum, the response
5201
+ # includes a `NextToken` value that you can assign to the `NextToken`
5202
+ # request parameter to get the next set of results.
5203
+ # @return [Integer]
5204
+ #
5205
+ # @!attribute [rw] call_as
5206
+ # Specifies whether you are acting as an account administrator in the
5207
+ # organization's management account or as a delegated administrator
5208
+ # in a member account.
5209
+ #
5210
+ # By default, `SELF` is specified. Use `SELF` for StackSets with
5211
+ # self-managed permissions.
5212
+ #
5213
+ # * If you are signed in to the management account, specify `SELF`.
5214
+ #
5215
+ # * If you are signed in to a delegated administrator account, specify
5216
+ # `DELEGATED_ADMIN`.
5217
+ #
5218
+ # Your Amazon Web Services account must be registered as a delegated
5219
+ # administrator in the management account. For more information, see
5220
+ # [Register a delegated administrator][1] in the *CloudFormation
5221
+ # User Guide*.
5222
+ #
5223
+ #
5224
+ #
5225
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
5226
+ # @return [String]
5227
+ #
5228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetAutoDeploymentTargetsInput AWS API Documentation
5229
+ #
5230
+ class ListStackSetAutoDeploymentTargetsInput < Struct.new(
5231
+ :stack_set_name,
5232
+ :next_token,
5233
+ :max_results,
5234
+ :call_as)
5235
+ SENSITIVE = []
5236
+ include Aws::Structure
5237
+ end
5238
+
5239
+ # @!attribute [rw] summaries
5240
+ # An array of summaries of the deployment targets for the stack set.
5241
+ # @return [Array<Types::StackSetAutoDeploymentTargetSummary>]
5242
+ #
5243
+ # @!attribute [rw] next_token
5244
+ # If the request doesn't return all the remaining results,
5245
+ # `NextToken` is set to a token. To retrieve the next set of results,
5246
+ # call [ `ListStackSetAutoDeploymentTargets` ][1] again and use that
5247
+ # value for the `NextToken` parameter. If the request returns all
5248
+ # results, `NextToken` is set to an empty string.
5249
+ #
5250
+ #
5251
+ #
5252
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetAutoDeploymentTargets.html
5253
+ # @return [String]
5254
+ #
5255
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetAutoDeploymentTargetsOutput AWS API Documentation
5256
+ #
5257
+ class ListStackSetAutoDeploymentTargetsOutput < Struct.new(
5258
+ :summaries,
5259
+ :next_token)
5260
+ SENSITIVE = []
5261
+ include Aws::Structure
5262
+ end
5263
+
5188
5264
  # @!attribute [rw] stack_set_name
5189
5265
  # The name or unique ID of the stack set that you want to get
5190
5266
  # operation results for.
@@ -6906,7 +6982,7 @@ module Aws::CloudFormation
6906
6982
  # to this property causes the resource to be recreated. The value can
6907
6983
  # be `Never`, `Always`, or `Conditionally`. To determine the
6908
6984
  # conditions for a `Conditionally` recreation, see the update behavior
6909
- # for that [property][1] in the CloudFormation User Guide.
6985
+ # for that [property][1] in the *CloudFormation User Guide*.
6910
6986
  #
6911
6987
  #
6912
6988
  #
@@ -6928,8 +7004,8 @@ module Aws::CloudFormation
6928
7004
  # @!attribute [rw] resource_type
6929
7005
  # The type of resource to import into your stack, such as
6930
7006
  # `AWS::S3::Bucket`. For a list of supported resource types, see
6931
- # [Resources that support import operations][1] in the CloudFormation
6932
- # User Guide.
7007
+ # [Resources that support import operations][1] in the *CloudFormation
7008
+ # User Guide*.
6933
7009
  #
6934
7010
  #
6935
7011
  #
@@ -7683,7 +7759,7 @@ module Aws::CloudFormation
7683
7759
  #
7684
7760
  # @!attribute [rw] resource_type
7685
7761
  # Type of resource. (For more information, go to [Amazon Web Services
7686
- # Resource Types Reference][1] in the CloudFormation User Guide.)
7762
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.)
7687
7763
  #
7688
7764
  #
7689
7765
  #
@@ -8026,7 +8102,7 @@ module Aws::CloudFormation
8026
8102
  #
8027
8103
  # @!attribute [rw] resource_type
8028
8104
  # Type of resource. For more information, go to [Amazon Web Services
8029
- # Resource Types Reference][1] in the CloudFormation User Guide.
8105
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.
8030
8106
  #
8031
8107
  #
8032
8108
  #
@@ -8221,7 +8297,7 @@ module Aws::CloudFormation
8221
8297
  #
8222
8298
  # @!attribute [rw] resource_type
8223
8299
  # Type of resource. For more information, go to [Amazon Web Services
8224
- # Resource Types Reference][1] in the CloudFormation User Guide.
8300
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.
8225
8301
  #
8226
8302
  #
8227
8303
  #
@@ -8301,7 +8377,7 @@ module Aws::CloudFormation
8301
8377
  #
8302
8378
  # @!attribute [rw] resource_type
8303
8379
  # Type of resource. For more information, go to [Amazon Web Services
8304
- # Resource Types Reference][1] in the CloudFormation User Guide.
8380
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.
8305
8381
  #
8306
8382
  #
8307
8383
  #
@@ -8327,7 +8403,7 @@ module Aws::CloudFormation
8327
8403
  # @!attribute [rw] metadata
8328
8404
  # The content of the `Metadata` attribute declared for the resource.
8329
8405
  # For more information, see [Metadata Attribute][1] in the
8330
- # CloudFormation User Guide.
8406
+ # *CloudFormation User Guide*.
8331
8407
  #
8332
8408
  #
8333
8409
  #
@@ -8589,7 +8665,7 @@ module Aws::CloudFormation
8589
8665
  #
8590
8666
  # @!attribute [rw] resource_type
8591
8667
  # Type of resource. (For more information, go to [Amazon Web Services
8592
- # Resource Types Reference][1] in the CloudFormation User Guide.)
8668
+ # Resource Types Reference][1] in the *CloudFormation User Guide*.)
8593
8669
  #
8594
8670
  #
8595
8671
  #
@@ -8796,6 +8872,31 @@ module Aws::CloudFormation
8796
8872
  include Aws::Structure
8797
8873
  end
8798
8874
 
8875
+ # One of the targets for the stack set. Returned by the [
8876
+ # `ListStackSetAutoDeploymentTargets` ][1] API operation.
8877
+ #
8878
+ #
8879
+ #
8880
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetAutoDeploymentTargets.html
8881
+ #
8882
+ # @!attribute [rw] organizational_unit_id
8883
+ # The organization root ID or organizational unit (OU) IDs where the
8884
+ # stack set is targeted.
8885
+ # @return [String]
8886
+ #
8887
+ # @!attribute [rw] regions
8888
+ # The list of Regions targeted for this organization or OU.
8889
+ # @return [Array<String>]
8890
+ #
8891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetAutoDeploymentTargetSummary AWS API Documentation
8892
+ #
8893
+ class StackSetAutoDeploymentTargetSummary < Struct.new(
8894
+ :organizational_unit_id,
8895
+ :regions)
8896
+ SENSITIVE = []
8897
+ include Aws::Structure
8898
+ end
8899
+
8799
8900
  # Detailed information about the drift status of the stack set.
8800
8901
  #
8801
8902
  # For stack sets, contains information about the last *completed* drift
@@ -8956,7 +9057,7 @@ module Aws::CloudFormation
8956
9057
  # * `QUEUED`: \[Service-managed permissions\] For automatic
8957
9058
  # deployments that require a sequence of operations, the operation
8958
9059
  # is queued to be performed. For more information, see the [stack
8959
- # set operation status codes][1] in the CloudFormation User Guide.
9060
+ # set operation status codes][1] in the *CloudFormation User Guide*.
8960
9061
  #
8961
9062
  # * `RUNNING`: The operation is currently being performed.
8962
9063
  #
@@ -9038,7 +9139,7 @@ module Aws::CloudFormation
9038
9139
  # `Action` type is `DETECT_DRIFT`.
9039
9140
  #
9040
9141
  # For more information, see [Detecting Unmanaged Changes in Stack
9041
- # Sets][1] in the CloudFormation User Guide.
9142
+ # Sets][1] in the *CloudFormation User Guide*.
9042
9143
  #
9043
9144
  #
9044
9145
  #
@@ -9314,7 +9415,7 @@ module Aws::CloudFormation
9314
9415
  # * `QUEUED`: \[Service-managed permissions\] For automatic
9315
9416
  # deployments that require a sequence of operations, the operation
9316
9417
  # is queued to be performed. For more information, see the [stack
9317
- # set operation status codes][1] in the CloudFormation User Guide.
9418
+ # set operation status codes][1] in the *CloudFormation User Guide*.
9318
9419
  #
9319
9420
  # * `RUNNING`: The operation is currently being performed.
9320
9421
  #
@@ -10910,8 +11011,8 @@ module Aws::CloudFormation
10910
11011
  # @!attribute [rw] template_body
10911
11012
  # The structure that contains the template body, with a minimum length
10912
11013
  # of 1 byte and a maximum length of 51,200 bytes. For more
10913
- # information, see [Template Anatomy][1] in the CloudFormation User
10914
- # Guide.
11014
+ # information, see [Template Anatomy][1] in the *CloudFormation User
11015
+ # Guide*.
10915
11016
  #
10916
11017
  # Conditional: You must specify only one of the following parameters:
10917
11018
  # `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to
@@ -10926,8 +11027,8 @@ module Aws::CloudFormation
10926
11027
  # The location of the file that contains the template body. The URL
10927
11028
  # must point to a template (maximum size: 460,800 bytes) that is
10928
11029
  # located in an Amazon S3 bucket or a Systems Manager document. For
10929
- # more information, see [Template Anatomy][1] in the CloudFormation
10930
- # User Guide.
11030
+ # more information, see [Template Anatomy][1] in the *CloudFormation
11031
+ # User Guide*.
10931
11032
  #
10932
11033
  # Conditional: You must specify only one of the following parameters:
10933
11034
  # `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to
@@ -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.100.0'
60
+ GEM_VERSION = '1.102.0'
61
61
 
62
62
  end
data/sig/client.rbs CHANGED
@@ -1036,6 +1036,20 @@ module Aws
1036
1036
  ) -> _ListStackResourcesResponseSuccess
1037
1037
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackResourcesResponseSuccess
1038
1038
 
1039
+ interface _ListStackSetAutoDeploymentTargetsResponseSuccess
1040
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetAutoDeploymentTargetsOutput]
1041
+ def summaries: () -> ::Array[Types::StackSetAutoDeploymentTargetSummary]
1042
+ def next_token: () -> ::String
1043
+ end
1044
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_stack_set_auto_deployment_targets-instance_method
1045
+ def list_stack_set_auto_deployment_targets: (
1046
+ stack_set_name: ::String,
1047
+ ?next_token: ::String,
1048
+ ?max_results: ::Integer,
1049
+ ?call_as: ("SELF" | "DELEGATED_ADMIN")
1050
+ ) -> _ListStackSetAutoDeploymentTargetsResponseSuccess
1051
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStackSetAutoDeploymentTargetsResponseSuccess
1052
+
1039
1053
  interface _ListStackSetOperationResultsResponseSuccess
1040
1054
  include ::Seahorse::Client::_ResponseSuccess[Types::ListStackSetOperationResultsOutput]
1041
1055
  def summaries: () -> ::Array[Types::StackSetOperationResultSummary]
data/sig/types.rbs CHANGED
@@ -930,6 +930,20 @@ module Aws::CloudFormation
930
930
  SENSITIVE: []
931
931
  end
932
932
 
933
+ class ListStackSetAutoDeploymentTargetsInput
934
+ attr_accessor stack_set_name: ::String
935
+ attr_accessor next_token: ::String
936
+ attr_accessor max_results: ::Integer
937
+ attr_accessor call_as: ("SELF" | "DELEGATED_ADMIN")
938
+ SENSITIVE: []
939
+ end
940
+
941
+ class ListStackSetAutoDeploymentTargetsOutput
942
+ attr_accessor summaries: ::Array[Types::StackSetAutoDeploymentTargetSummary]
943
+ attr_accessor next_token: ::String
944
+ SENSITIVE: []
945
+ end
946
+
933
947
  class ListStackSetOperationResultsInput
934
948
  attr_accessor stack_set_name: ::String
935
949
  attr_accessor operation_id: ::String
@@ -1548,6 +1562,12 @@ module Aws::CloudFormation
1548
1562
  SENSITIVE: []
1549
1563
  end
1550
1564
 
1565
+ class StackSetAutoDeploymentTargetSummary
1566
+ attr_accessor organizational_unit_id: ::String
1567
+ attr_accessor regions: ::Array[::String]
1568
+ SENSITIVE: []
1569
+ end
1570
+
1551
1571
  class StackSetDriftDetectionDetails
1552
1572
  attr_accessor drift_status: ("DRIFTED" | "IN_SYNC" | "NOT_CHECKED")
1553
1573
  attr_accessor drift_detection_status: ("COMPLETED" | "FAILED" | "PARTIAL_SUCCESS" | "IN_PROGRESS" | "STOPPED")
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.100.0
4
+ version: 1.102.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: 2024-03-04 00:00:00.000000000 Z
11
+ date: 2024-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core