aws-sdk-cloudformation 1.101.0 → 1.102.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +71 -2
- data/lib/aws-sdk-cloudformation/client_api.rb +29 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +14 -0
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-cloudformation/resource.rb +1 -1
- data/lib/aws-sdk-cloudformation/stack.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +109 -1
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +14 -0
- data/sig/types.rbs +20 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e8370b27119126eb875a0ae81933d87f068890dd3b3cc9b596532a3589e7e86
|
4
|
+
data.tar.gz: c9615dac798a30893625f8b2e819b0238fbd8b126acc8eab3a6cbcd9ae29c520
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d1bbb5342d7521682bc01b782c7078da6474d57648820c4c9d5ee5dd75bed5c492804ebfdecfc5410d52c60b1b54f55686d57c76c8dc29cf5efd69beaf0b7dd
|
7
|
+
data.tar.gz: cef6cfafdc204df92793d7fe023930c2768bb0b6180acc392feb7189dfcd2773ae5146e0cd330aa8652e6712c33bf126d83e3e43d346da321287dea3411d6dfb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
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
|
+
|
4
9
|
1.101.0 (2024-03-12)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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`
|
1308
|
+
# * [ `AWS::IAM::AccessKey` ][1]
|
1309
1309
|
#
|
1310
1310
|
# * [ `AWS::IAM::Group` ][2]
|
1311
1311
|
#
|
@@ -5574,6 +5574,75 @@ module Aws::CloudFormation
|
|
5574
5574
|
req.send_request(options)
|
5575
5575
|
end
|
5576
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<Types::StackSetAutoDeploymentTargetSummary>
|
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
|
+
|
5577
5646
|
# Returns summary information about the results of a stack set
|
5578
5647
|
# operation.
|
5579
5648
|
#
|
@@ -8259,7 +8328,7 @@ module Aws::CloudFormation
|
|
8259
8328
|
params: params,
|
8260
8329
|
config: config)
|
8261
8330
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8262
|
-
context[:gem_version] = '1.
|
8331
|
+
context[:gem_version] = '1.102.0'
|
8263
8332
|
Seahorse::Client::Request.new(handlers, context)
|
8264
8333
|
end
|
8265
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
|
@@ -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`
|
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`
|
548
|
+
# * [ `AWS::IAM::AccessKey` ][1]
|
549
549
|
#
|
550
550
|
# * [ `AWS::IAM::Group` ][2]
|
551
551
|
#
|
@@ -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`
|
1201
|
+
# * [ `AWS::IAM::AccessKey` ][1]
|
1202
1202
|
#
|
1203
1203
|
# * [ `AWS::IAM::Group` ][2]
|
1204
1204
|
#
|
@@ -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.
|
@@ -7939,6 +8015,13 @@ module Aws::CloudFormation
|
|
7939
8015
|
# a Region, the failure tolerance for the stack set operation as a
|
7940
8016
|
# whole might be exceeded.
|
7941
8017
|
#
|
8018
|
+
# * `FAILED_IMPORT`: The import of the stack instance in the specified
|
8019
|
+
# account and Region failed and left the stack in an unstable state.
|
8020
|
+
# Once the issues causing the failure are fixed, the import
|
8021
|
+
# operation can be retried. If enough stack set operations fail in
|
8022
|
+
# enough accounts within a Region, the failure tolerance for the
|
8023
|
+
# stack set operation as a whole might be exceeded.
|
8024
|
+
#
|
7942
8025
|
# * `INOPERABLE`: A `DeleteStackInstances` operation has failed and
|
7943
8026
|
# left the stack in an unstable state. Stacks in this state are
|
7944
8027
|
# excluded from further `UpdateStackSet` operations. You might need
|
@@ -8789,6 +8872,31 @@ module Aws::CloudFormation
|
|
8789
8872
|
include Aws::Structure
|
8790
8873
|
end
|
8791
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
|
+
|
8792
8900
|
# Detailed information about the drift status of the stack set.
|
8793
8901
|
#
|
8794
8902
|
# For stack sets, contains information about the last *completed* drift
|
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.
|
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-
|
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
|