aws-sdk-cloudformation 1.86.0 → 1.87.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +144 -26
- data/lib/aws-sdk-cloudformation/client_api.rb +41 -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 +6 -6
- data/lib/aws-sdk-cloudformation/stack.rb +15 -15
- data/lib/aws-sdk-cloudformation/stack_resource.rb +1 -1
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +225 -39
- data/lib/aws-sdk-cloudformation.rb +1 -1
- 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: ffbf8c0045f7e0347d781bf85b2154ecf017f44b643eec5ccd62bdc22e800d4c
|
|
4
|
+
data.tar.gz: 9f9c9a9874aad1ea4246ff82ce3f307cf96ea7ba9132a0c07cc4610d57b3bca8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19ca82e649885083ae84276cbee6e413bbb627ea7abca2d0b0804963c819cde781a296cb7248e593cd12f4455b17eb6e00b66f8dc7159b05815b2ba63ad7b273
|
|
7
|
+
data.tar.gz: ee8165a1ec2d754c060c29b75324619dda275496c23dd8a0977a8fbf67fc5c7ddc917401c1fc1f78f0679f58c591953f8d99d9615d1551ca47af157c697d158e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.87.0 (2023-07-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release supports filtering by DRIFT_STATUS for existing API ListStackInstances and adds support for a new API ListStackInstanceResourceDrifts. Customers can now view resource drift information from their StackSet management accounts.
|
|
8
|
+
|
|
4
9
|
1.86.0 (2023-07-19)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.87.0
|
|
@@ -896,10 +896,10 @@ module Aws::CloudFormation
|
|
|
896
896
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
897
897
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
898
898
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
899
|
-
# [8]:
|
|
900
|
-
# [9]:
|
|
901
|
-
# [10]:
|
|
902
|
-
# [11]:
|
|
899
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
900
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
901
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
902
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
903
903
|
#
|
|
904
904
|
# @option params [Array<String>] :resource_types
|
|
905
905
|
# The template resource types that you have permissions to work with if
|
|
@@ -1243,10 +1243,10 @@ module Aws::CloudFormation
|
|
|
1243
1243
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
1244
1244
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
1245
1245
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
1246
|
-
# [8]:
|
|
1247
|
-
# [9]:
|
|
1248
|
-
# [10]:
|
|
1249
|
-
# [11]:
|
|
1246
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
1247
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
1248
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
1249
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
1250
1250
|
#
|
|
1251
1251
|
# @option params [Array<String>] :resource_types
|
|
1252
1252
|
# The template resource types that you have permissions to work with for
|
|
@@ -1346,8 +1346,8 @@ module Aws::CloudFormation
|
|
|
1346
1346
|
#
|
|
1347
1347
|
#
|
|
1348
1348
|
#
|
|
1349
|
-
# [1]:
|
|
1350
|
-
# [2]:
|
|
1349
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
|
|
1350
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
1351
1351
|
#
|
|
1352
1352
|
# @return [Types::CreateStackOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1353
1353
|
#
|
|
@@ -1684,10 +1684,10 @@ module Aws::CloudFormation
|
|
|
1684
1684
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
1685
1685
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
1686
1686
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
1687
|
-
# [8]:
|
|
1688
|
-
# [9]:
|
|
1689
|
-
# [10]:
|
|
1690
|
-
# [11]:
|
|
1687
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/using-iam-template.html#capabilities
|
|
1688
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/template-macros.html
|
|
1689
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
1690
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/transform-aws-serverless.html
|
|
1691
1691
|
#
|
|
1692
1692
|
# @option params [Array<Types::Tag>] :tags
|
|
1693
1693
|
# The key-value pairs to associate with this stack set and the stacks
|
|
@@ -1712,7 +1712,7 @@ module Aws::CloudFormation
|
|
|
1712
1712
|
#
|
|
1713
1713
|
#
|
|
1714
1714
|
#
|
|
1715
|
-
# [1]:
|
|
1715
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html
|
|
1716
1716
|
#
|
|
1717
1717
|
# @option params [String] :execution_role_name
|
|
1718
1718
|
# The name of the IAM execution role to use to create the stack set. If
|
|
@@ -4363,6 +4363,124 @@ module Aws::CloudFormation
|
|
|
4363
4363
|
req.send_request(options)
|
|
4364
4364
|
end
|
|
4365
4365
|
|
|
4366
|
+
# Returns drift information for resources in a stack instance.
|
|
4367
|
+
#
|
|
4368
|
+
# <note markdown="1"> `ListStackInstanceResourceDrifts` returns drift information for the
|
|
4369
|
+
# most recent drift detection operation. If an operation is in progress,
|
|
4370
|
+
# it may only return partial results.
|
|
4371
|
+
#
|
|
4372
|
+
# </note>
|
|
4373
|
+
#
|
|
4374
|
+
# @option params [required, String] :stack_set_name
|
|
4375
|
+
# The name or unique ID of the stack set that you want to list drifted
|
|
4376
|
+
# resources for.
|
|
4377
|
+
#
|
|
4378
|
+
# @option params [String] :next_token
|
|
4379
|
+
# If the previous paginated request didn't return all of the remaining
|
|
4380
|
+
# results, the response object's `NextToken` parameter value is set to
|
|
4381
|
+
# a token. To retrieve the next set of results, call this action again
|
|
4382
|
+
# and assign that token to the request object's `NextToken` parameter.
|
|
4383
|
+
# If there are no remaining results, the previous response object's
|
|
4384
|
+
# `NextToken` parameter is set to `null`.
|
|
4385
|
+
#
|
|
4386
|
+
# @option params [Integer] :max_results
|
|
4387
|
+
# The maximum number of results to be returned with a single call. If
|
|
4388
|
+
# the number of available results exceeds this maximum, the response
|
|
4389
|
+
# includes a `NextToken` value that you can assign to the `NextToken`
|
|
4390
|
+
# request parameter to get the next set of results.
|
|
4391
|
+
#
|
|
4392
|
+
# @option params [Array<String>] :stack_instance_resource_drift_statuses
|
|
4393
|
+
# The resource drift status of the stack instance.
|
|
4394
|
+
#
|
|
4395
|
+
# * `DELETED`: The resource differs from its expected template
|
|
4396
|
+
# configuration in that the resource has been deleted.
|
|
4397
|
+
#
|
|
4398
|
+
# * `MODIFIED`: One or more resource properties differ from their
|
|
4399
|
+
# expected template values.
|
|
4400
|
+
#
|
|
4401
|
+
# * `IN_SYNC`: The resource's actual configuration matches its expected
|
|
4402
|
+
# template configuration.
|
|
4403
|
+
#
|
|
4404
|
+
# * `NOT_CHECKED`: CloudFormation doesn't currently return this value.
|
|
4405
|
+
#
|
|
4406
|
+
# @option params [required, String] :stack_instance_account
|
|
4407
|
+
# The name of the Amazon Web Services account that you want to list
|
|
4408
|
+
# resource drifts for.
|
|
4409
|
+
#
|
|
4410
|
+
# @option params [required, String] :stack_instance_region
|
|
4411
|
+
# The name of the Region where you want to list resource drifts.
|
|
4412
|
+
#
|
|
4413
|
+
# @option params [required, String] :operation_id
|
|
4414
|
+
# The unique ID of the drift operation.
|
|
4415
|
+
#
|
|
4416
|
+
# @option params [String] :call_as
|
|
4417
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
|
4418
|
+
# account administrator in the organization's management account or as
|
|
4419
|
+
# a delegated administrator in a member account.
|
|
4420
|
+
#
|
|
4421
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
|
4422
|
+
# self-managed permissions.
|
|
4423
|
+
#
|
|
4424
|
+
# * If you are signed in to the management account, specify `SELF`.
|
|
4425
|
+
#
|
|
4426
|
+
# * If you are signed in to a delegated administrator account, specify
|
|
4427
|
+
# `DELEGATED_ADMIN`.
|
|
4428
|
+
#
|
|
4429
|
+
# Your Amazon Web Services account must be registered as a delegated
|
|
4430
|
+
# administrator in the management account. For more information, see
|
|
4431
|
+
# [Register a delegated administrator][1] in the *CloudFormation User
|
|
4432
|
+
# Guide*.
|
|
4433
|
+
#
|
|
4434
|
+
#
|
|
4435
|
+
#
|
|
4436
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
|
4437
|
+
#
|
|
4438
|
+
# @return [Types::ListStackInstanceResourceDriftsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4439
|
+
#
|
|
4440
|
+
# * {Types::ListStackInstanceResourceDriftsOutput#summaries #summaries} => Array<Types::StackInstanceResourceDriftsSummary>
|
|
4441
|
+
# * {Types::ListStackInstanceResourceDriftsOutput#next_token #next_token} => String
|
|
4442
|
+
#
|
|
4443
|
+
# @example Request syntax with placeholder values
|
|
4444
|
+
#
|
|
4445
|
+
# resp = client.list_stack_instance_resource_drifts({
|
|
4446
|
+
# stack_set_name: "StackSetNameOrId", # required
|
|
4447
|
+
# next_token: "NextToken",
|
|
4448
|
+
# max_results: 1,
|
|
4449
|
+
# stack_instance_resource_drift_statuses: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
|
|
4450
|
+
# stack_instance_account: "Account", # required
|
|
4451
|
+
# stack_instance_region: "Region", # required
|
|
4452
|
+
# operation_id: "ClientRequestToken", # required
|
|
4453
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
|
4454
|
+
# })
|
|
4455
|
+
#
|
|
4456
|
+
# @example Response structure
|
|
4457
|
+
#
|
|
4458
|
+
# resp.summaries #=> Array
|
|
4459
|
+
# resp.summaries[0].stack_id #=> String
|
|
4460
|
+
# resp.summaries[0].logical_resource_id #=> String
|
|
4461
|
+
# resp.summaries[0].physical_resource_id #=> String
|
|
4462
|
+
# resp.summaries[0].physical_resource_id_context #=> Array
|
|
4463
|
+
# resp.summaries[0].physical_resource_id_context[0].key #=> String
|
|
4464
|
+
# resp.summaries[0].physical_resource_id_context[0].value #=> String
|
|
4465
|
+
# resp.summaries[0].resource_type #=> String
|
|
4466
|
+
# resp.summaries[0].property_differences #=> Array
|
|
4467
|
+
# resp.summaries[0].property_differences[0].property_path #=> String
|
|
4468
|
+
# resp.summaries[0].property_differences[0].expected_value #=> String
|
|
4469
|
+
# resp.summaries[0].property_differences[0].actual_value #=> String
|
|
4470
|
+
# resp.summaries[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
|
4471
|
+
# resp.summaries[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
|
4472
|
+
# resp.summaries[0].timestamp #=> Time
|
|
4473
|
+
# resp.next_token #=> String
|
|
4474
|
+
#
|
|
4475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstanceResourceDrifts AWS API Documentation
|
|
4476
|
+
#
|
|
4477
|
+
# @overload list_stack_instance_resource_drifts(params = {})
|
|
4478
|
+
# @param [Hash] params ({})
|
|
4479
|
+
def list_stack_instance_resource_drifts(params = {}, options = {})
|
|
4480
|
+
req = build_request(:list_stack_instance_resource_drifts, params)
|
|
4481
|
+
req.send_request(options)
|
|
4482
|
+
end
|
|
4483
|
+
|
|
4366
4484
|
# Returns summary information about stack instances that are associated
|
|
4367
4485
|
# with the specified stack set. You can filter for stack instances that
|
|
4368
4486
|
# are associated with a specific Amazon Web Services account name or
|
|
@@ -4433,7 +4551,7 @@ module Aws::CloudFormation
|
|
|
4433
4551
|
# max_results: 1,
|
|
4434
4552
|
# filters: [
|
|
4435
4553
|
# {
|
|
4436
|
-
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID
|
|
4554
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID, DRIFT_STATUS
|
|
4437
4555
|
# values: "StackInstanceFilterValues",
|
|
4438
4556
|
# },
|
|
4439
4557
|
# ],
|
|
@@ -6144,10 +6262,10 @@ module Aws::CloudFormation
|
|
|
6144
6262
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
6145
6263
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
6146
6264
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
6147
|
-
# [8]:
|
|
6148
|
-
# [9]:
|
|
6149
|
-
# [10]:
|
|
6150
|
-
# [11]:
|
|
6265
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
6266
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
6267
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
6268
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
6151
6269
|
#
|
|
6152
6270
|
# @option params [Array<String>] :resource_types
|
|
6153
6271
|
# The template resource types that you have permissions to work with for
|
|
@@ -6611,10 +6729,10 @@ module Aws::CloudFormation
|
|
|
6611
6729
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
6612
6730
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
6613
6731
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
6614
|
-
# [8]:
|
|
6615
|
-
# [9]:
|
|
6616
|
-
# [10]:
|
|
6617
|
-
# [11]:
|
|
6732
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/using-iam-template.html#capabilities
|
|
6733
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/template-macros.html
|
|
6734
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
6735
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/transform-aws-serverless.html
|
|
6618
6736
|
#
|
|
6619
6737
|
# @option params [Array<Types::Tag>] :tags
|
|
6620
6738
|
# The key-value pairs to associate with this stack set and the stacks
|
|
@@ -6667,7 +6785,7 @@ module Aws::CloudFormation
|
|
|
6667
6785
|
#
|
|
6668
6786
|
#
|
|
6669
6787
|
#
|
|
6670
|
-
# [1]:
|
|
6788
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html
|
|
6671
6789
|
#
|
|
6672
6790
|
# @option params [String] :execution_role_name
|
|
6673
6791
|
# The name of the IAM execution role to use to update the stack set. If
|
|
@@ -7005,7 +7123,7 @@ module Aws::CloudFormation
|
|
|
7005
7123
|
params: params,
|
|
7006
7124
|
config: config)
|
|
7007
7125
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
7008
|
-
context[:gem_version] = '1.
|
|
7126
|
+
context[:gem_version] = '1.87.0'
|
|
7009
7127
|
Seahorse::Client::Request.new(handlers, context)
|
|
7010
7128
|
end
|
|
7011
7129
|
|
|
@@ -202,6 +202,8 @@ module Aws::CloudFormation
|
|
|
202
202
|
ListExportsOutput = Shapes::StructureShape.new(name: 'ListExportsOutput')
|
|
203
203
|
ListImportsInput = Shapes::StructureShape.new(name: 'ListImportsInput')
|
|
204
204
|
ListImportsOutput = Shapes::StructureShape.new(name: 'ListImportsOutput')
|
|
205
|
+
ListStackInstanceResourceDriftsInput = Shapes::StructureShape.new(name: 'ListStackInstanceResourceDriftsInput')
|
|
206
|
+
ListStackInstanceResourceDriftsOutput = Shapes::StructureShape.new(name: 'ListStackInstanceResourceDriftsOutput')
|
|
205
207
|
ListStackInstancesInput = Shapes::StructureShape.new(name: 'ListStackInstancesInput')
|
|
206
208
|
ListStackInstancesOutput = Shapes::StructureShape.new(name: 'ListStackInstancesOutput')
|
|
207
209
|
ListStackResourcesInput = Shapes::StructureShape.new(name: 'ListStackResourcesInput')
|
|
@@ -367,6 +369,8 @@ module Aws::CloudFormation
|
|
|
367
369
|
StackInstanceFilterValues = Shapes::StringShape.new(name: 'StackInstanceFilterValues')
|
|
368
370
|
StackInstanceFilters = Shapes::ListShape.new(name: 'StackInstanceFilters')
|
|
369
371
|
StackInstanceNotFoundException = Shapes::StructureShape.new(name: 'StackInstanceNotFoundException')
|
|
372
|
+
StackInstanceResourceDriftsSummaries = Shapes::ListShape.new(name: 'StackInstanceResourceDriftsSummaries')
|
|
373
|
+
StackInstanceResourceDriftsSummary = Shapes::StructureShape.new(name: 'StackInstanceResourceDriftsSummary')
|
|
370
374
|
StackInstanceStatus = Shapes::StringShape.new(name: 'StackInstanceStatus')
|
|
371
375
|
StackInstanceSummaries = Shapes::ListShape.new(name: 'StackInstanceSummaries')
|
|
372
376
|
StackInstanceSummary = Shapes::StructureShape.new(name: 'StackInstanceSummary')
|
|
@@ -1057,6 +1061,20 @@ module Aws::CloudFormation
|
|
|
1057
1061
|
ListImportsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
1058
1062
|
ListImportsOutput.struct_class = Types::ListImportsOutput
|
|
1059
1063
|
|
|
1064
|
+
ListStackInstanceResourceDriftsInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
|
|
1065
|
+
ListStackInstanceResourceDriftsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
1066
|
+
ListStackInstanceResourceDriftsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
1067
|
+
ListStackInstanceResourceDriftsInput.add_member(:stack_instance_resource_drift_statuses, Shapes::ShapeRef.new(shape: StackResourceDriftStatusFilters, location_name: "StackInstanceResourceDriftStatuses"))
|
|
1068
|
+
ListStackInstanceResourceDriftsInput.add_member(:stack_instance_account, Shapes::ShapeRef.new(shape: Account, required: true, location_name: "StackInstanceAccount"))
|
|
1069
|
+
ListStackInstanceResourceDriftsInput.add_member(:stack_instance_region, Shapes::ShapeRef.new(shape: Region, required: true, location_name: "StackInstanceRegion"))
|
|
1070
|
+
ListStackInstanceResourceDriftsInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "OperationId"))
|
|
1071
|
+
ListStackInstanceResourceDriftsInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
|
1072
|
+
ListStackInstanceResourceDriftsInput.struct_class = Types::ListStackInstanceResourceDriftsInput
|
|
1073
|
+
|
|
1074
|
+
ListStackInstanceResourceDriftsOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackInstanceResourceDriftsSummaries, location_name: "Summaries"))
|
|
1075
|
+
ListStackInstanceResourceDriftsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
1076
|
+
ListStackInstanceResourceDriftsOutput.struct_class = Types::ListStackInstanceResourceDriftsOutput
|
|
1077
|
+
|
|
1060
1078
|
ListStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
|
1061
1079
|
ListStackInstancesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
1062
1080
|
ListStackInstancesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
@@ -1459,6 +1477,18 @@ module Aws::CloudFormation
|
|
|
1459
1477
|
|
|
1460
1478
|
StackInstanceNotFoundException.struct_class = Types::StackInstanceNotFoundException
|
|
1461
1479
|
|
|
1480
|
+
StackInstanceResourceDriftsSummaries.member = Shapes::ShapeRef.new(shape: StackInstanceResourceDriftsSummary)
|
|
1481
|
+
|
|
1482
|
+
StackInstanceResourceDriftsSummary.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, required: true, location_name: "StackId"))
|
|
1483
|
+
StackInstanceResourceDriftsSummary.add_member(:logical_resource_id, Shapes::ShapeRef.new(shape: LogicalResourceId, required: true, location_name: "LogicalResourceId"))
|
|
1484
|
+
StackInstanceResourceDriftsSummary.add_member(:physical_resource_id, Shapes::ShapeRef.new(shape: PhysicalResourceId, location_name: "PhysicalResourceId"))
|
|
1485
|
+
StackInstanceResourceDriftsSummary.add_member(:physical_resource_id_context, Shapes::ShapeRef.new(shape: PhysicalResourceIdContext, location_name: "PhysicalResourceIdContext"))
|
|
1486
|
+
StackInstanceResourceDriftsSummary.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "ResourceType"))
|
|
1487
|
+
StackInstanceResourceDriftsSummary.add_member(:property_differences, Shapes::ShapeRef.new(shape: PropertyDifferences, location_name: "PropertyDifferences"))
|
|
1488
|
+
StackInstanceResourceDriftsSummary.add_member(:stack_resource_drift_status, Shapes::ShapeRef.new(shape: StackResourceDriftStatus, required: true, location_name: "StackResourceDriftStatus"))
|
|
1489
|
+
StackInstanceResourceDriftsSummary.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "Timestamp"))
|
|
1490
|
+
StackInstanceResourceDriftsSummary.struct_class = Types::StackInstanceResourceDriftsSummary
|
|
1491
|
+
|
|
1462
1492
|
StackInstanceSummaries.member = Shapes::ShapeRef.new(shape: StackInstanceSummary)
|
|
1463
1493
|
|
|
1464
1494
|
StackInstanceSummary.add_member(:stack_set_id, Shapes::ShapeRef.new(shape: StackSetId, location_name: "StackSetId"))
|
|
@@ -2313,6 +2343,17 @@ module Aws::CloudFormation
|
|
|
2313
2343
|
)
|
|
2314
2344
|
end)
|
|
2315
2345
|
|
|
2346
|
+
api.add_operation(:list_stack_instance_resource_drifts, Seahorse::Model::Operation.new.tap do |o|
|
|
2347
|
+
o.name = "ListStackInstanceResourceDrifts"
|
|
2348
|
+
o.http_method = "POST"
|
|
2349
|
+
o.http_request_uri = "/"
|
|
2350
|
+
o.input = Shapes::ShapeRef.new(shape: ListStackInstanceResourceDriftsInput)
|
|
2351
|
+
o.output = Shapes::ShapeRef.new(shape: ListStackInstanceResourceDriftsOutput)
|
|
2352
|
+
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
|
2353
|
+
o.errors << Shapes::ShapeRef.new(shape: StackInstanceNotFoundException)
|
|
2354
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotFoundException)
|
|
2355
|
+
end)
|
|
2356
|
+
|
|
2316
2357
|
api.add_operation(:list_stack_instances, Seahorse::Model::Operation.new.tap do |o|
|
|
2317
2358
|
o.name = "ListStackInstances"
|
|
2318
2359
|
o.http_method = "POST"
|
|
@@ -628,6 +628,20 @@ module Aws::CloudFormation
|
|
|
628
628
|
end
|
|
629
629
|
end
|
|
630
630
|
|
|
631
|
+
class ListStackInstanceResourceDrifts
|
|
632
|
+
def self.build(context)
|
|
633
|
+
unless context.config.regional_endpoint
|
|
634
|
+
endpoint = context.config.endpoint.to_s
|
|
635
|
+
end
|
|
636
|
+
Aws::CloudFormation::EndpointParameters.new(
|
|
637
|
+
region: context.config.region,
|
|
638
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
639
|
+
use_fips: context.config.use_fips_endpoint,
|
|
640
|
+
endpoint: endpoint,
|
|
641
|
+
)
|
|
642
|
+
end
|
|
643
|
+
end
|
|
644
|
+
|
|
631
645
|
class ListStackInstances
|
|
632
646
|
def self.build(context)
|
|
633
647
|
unless context.config.regional_endpoint
|
|
@@ -144,6 +144,8 @@ module Aws::CloudFormation
|
|
|
144
144
|
Aws::CloudFormation::Endpoints::ListExports.build(context)
|
|
145
145
|
when :list_imports
|
|
146
146
|
Aws::CloudFormation::Endpoints::ListImports.build(context)
|
|
147
|
+
when :list_stack_instance_resource_drifts
|
|
148
|
+
Aws::CloudFormation::Endpoints::ListStackInstanceResourceDrifts.build(context)
|
|
147
149
|
when :list_stack_instances
|
|
148
150
|
Aws::CloudFormation::Endpoints::ListStackInstances.build(context)
|
|
149
151
|
when :list_stack_resources
|
|
@@ -218,10 +218,10 @@ module Aws::CloudFormation
|
|
|
218
218
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
219
219
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
220
220
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
221
|
-
# [8]:
|
|
222
|
-
# [9]:
|
|
223
|
-
# [10]:
|
|
224
|
-
# [11]:
|
|
221
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
222
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
223
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
224
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
225
225
|
# @option options [Array<String>] :resource_types
|
|
226
226
|
# The template resource types that you have permissions to work with for
|
|
227
227
|
# this create stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
|
|
@@ -313,8 +313,8 @@ module Aws::CloudFormation
|
|
|
313
313
|
#
|
|
314
314
|
#
|
|
315
315
|
#
|
|
316
|
-
# [1]:
|
|
317
|
-
# [2]:
|
|
316
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
|
|
317
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
318
318
|
# @return [Stack]
|
|
319
319
|
def create_stack(options = {})
|
|
320
320
|
Aws::Plugins::UserAgent.feature('resource') do
|
|
@@ -157,8 +157,8 @@ module Aws::CloudFormation
|
|
|
157
157
|
#
|
|
158
158
|
#
|
|
159
159
|
#
|
|
160
|
-
# [1]:
|
|
161
|
-
# [2]:
|
|
160
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
161
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
|
|
162
162
|
# @return [Boolean]
|
|
163
163
|
def enable_termination_protection
|
|
164
164
|
data[:enable_termination_protection]
|
|
@@ -173,7 +173,7 @@ module Aws::CloudFormation
|
|
|
173
173
|
#
|
|
174
174
|
#
|
|
175
175
|
#
|
|
176
|
-
# [1]:
|
|
176
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
177
177
|
# @return [String]
|
|
178
178
|
def parent_id
|
|
179
179
|
data[:parent_id]
|
|
@@ -188,7 +188,7 @@ module Aws::CloudFormation
|
|
|
188
188
|
#
|
|
189
189
|
#
|
|
190
190
|
#
|
|
191
|
-
# [1]:
|
|
191
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
192
192
|
# @return [String]
|
|
193
193
|
def root_id
|
|
194
194
|
data[:root_id]
|
|
@@ -202,7 +202,7 @@ module Aws::CloudFormation
|
|
|
202
202
|
#
|
|
203
203
|
#
|
|
204
204
|
#
|
|
205
|
-
# [1]:
|
|
205
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
206
206
|
# @return [Types::StackDriftInformation]
|
|
207
207
|
def drift_information
|
|
208
208
|
data[:drift_information]
|
|
@@ -573,10 +573,10 @@ module Aws::CloudFormation
|
|
|
573
573
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
574
574
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
575
575
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
576
|
-
# [8]:
|
|
577
|
-
# [9]:
|
|
578
|
-
# [10]:
|
|
579
|
-
# [11]:
|
|
576
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
577
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
578
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
579
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
580
580
|
# @option options [Array<String>] :resource_types
|
|
581
581
|
# The template resource types that you have permissions to work with for
|
|
582
582
|
# this create stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
|
|
@@ -668,8 +668,8 @@ module Aws::CloudFormation
|
|
|
668
668
|
#
|
|
669
669
|
#
|
|
670
670
|
#
|
|
671
|
-
# [1]:
|
|
672
|
-
# [2]:
|
|
671
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
|
|
672
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
673
673
|
# @return [Types::CreateStackOutput]
|
|
674
674
|
def create(options = {})
|
|
675
675
|
options = options.merge(stack_name: @name)
|
|
@@ -918,10 +918,10 @@ module Aws::CloudFormation
|
|
|
918
918
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
919
919
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
920
920
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
921
|
-
# [8]:
|
|
922
|
-
# [9]:
|
|
923
|
-
# [10]:
|
|
924
|
-
# [11]:
|
|
921
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
922
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
923
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
924
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
925
925
|
# @option options [Array<String>] :resource_types
|
|
926
926
|
# The template resource types that you have permissions to work with for
|
|
927
927
|
# this update stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
|
|
@@ -111,7 +111,7 @@ module Aws::CloudFormation
|
|
|
111
111
|
#
|
|
112
112
|
#
|
|
113
113
|
#
|
|
114
|
-
# [1]:
|
|
114
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
115
115
|
# @return [Types::StackResourceDriftInformation]
|
|
116
116
|
def drift_information
|
|
117
117
|
data[:drift_information]
|
|
@@ -87,7 +87,7 @@ module Aws::CloudFormation
|
|
|
87
87
|
#
|
|
88
88
|
#
|
|
89
89
|
#
|
|
90
|
-
# [1]:
|
|
90
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
91
91
|
# @return [Types::StackResourceDriftInformationSummary]
|
|
92
92
|
def drift_information
|
|
93
93
|
data[:drift_information]
|
|
@@ -819,10 +819,10 @@ module Aws::CloudFormation
|
|
|
819
819
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
820
820
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
821
821
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
822
|
-
# [8]:
|
|
823
|
-
# [9]:
|
|
824
|
-
# [10]:
|
|
825
|
-
# [11]:
|
|
822
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
823
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
824
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
825
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
826
826
|
# @return [Array<String>]
|
|
827
827
|
#
|
|
828
828
|
# @!attribute [rw] resource_types
|
|
@@ -1161,10 +1161,10 @@ module Aws::CloudFormation
|
|
|
1161
1161
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
1162
1162
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
1163
1163
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
1164
|
-
# [8]:
|
|
1165
|
-
# [9]:
|
|
1166
|
-
# [10]:
|
|
1167
|
-
# [11]:
|
|
1164
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
1165
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
1166
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
1167
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
1168
1168
|
# @return [Array<String>]
|
|
1169
1169
|
#
|
|
1170
1170
|
# @!attribute [rw] resource_types
|
|
@@ -1274,8 +1274,8 @@ module Aws::CloudFormation
|
|
|
1274
1274
|
#
|
|
1275
1275
|
#
|
|
1276
1276
|
#
|
|
1277
|
-
# [1]:
|
|
1278
|
-
# [2]:
|
|
1277
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
|
|
1278
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
1279
1279
|
# @return [Boolean]
|
|
1280
1280
|
#
|
|
1281
1281
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInput AWS API Documentation
|
|
@@ -1579,10 +1579,10 @@ module Aws::CloudFormation
|
|
|
1579
1579
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
1580
1580
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
1581
1581
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
1582
|
-
# [8]:
|
|
1583
|
-
# [9]:
|
|
1584
|
-
# [10]:
|
|
1585
|
-
# [11]:
|
|
1582
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/using-iam-template.html#capabilities
|
|
1583
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/template-macros.html
|
|
1584
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
1585
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/transform-aws-serverless.html
|
|
1586
1586
|
# @return [Array<String>]
|
|
1587
1587
|
#
|
|
1588
1588
|
# @!attribute [rw] tags
|
|
@@ -1610,7 +1610,7 @@ module Aws::CloudFormation
|
|
|
1610
1610
|
#
|
|
1611
1611
|
#
|
|
1612
1612
|
#
|
|
1613
|
-
# [1]:
|
|
1613
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html
|
|
1614
1614
|
# @return [String]
|
|
1615
1615
|
#
|
|
1616
1616
|
# @!attribute [rw] execution_role_name
|
|
@@ -4307,6 +4307,117 @@ module Aws::CloudFormation
|
|
|
4307
4307
|
include Aws::Structure
|
|
4308
4308
|
end
|
|
4309
4309
|
|
|
4310
|
+
# @!attribute [rw] stack_set_name
|
|
4311
|
+
# The name or unique ID of the stack set that you want to list drifted
|
|
4312
|
+
# resources for.
|
|
4313
|
+
# @return [String]
|
|
4314
|
+
#
|
|
4315
|
+
# @!attribute [rw] next_token
|
|
4316
|
+
# If the previous paginated request didn't return all of the
|
|
4317
|
+
# remaining results, the response object's `NextToken` parameter
|
|
4318
|
+
# value is set to a token. To retrieve the next set of results, call
|
|
4319
|
+
# this action again and assign that token to the request object's
|
|
4320
|
+
# `NextToken` parameter. If there are no remaining results, the
|
|
4321
|
+
# previous response object's `NextToken` parameter is set to `null`.
|
|
4322
|
+
# @return [String]
|
|
4323
|
+
#
|
|
4324
|
+
# @!attribute [rw] max_results
|
|
4325
|
+
# The maximum number of results to be returned with a single call. If
|
|
4326
|
+
# the number of available results exceeds this maximum, the response
|
|
4327
|
+
# includes a `NextToken` value that you can assign to the `NextToken`
|
|
4328
|
+
# request parameter to get the next set of results.
|
|
4329
|
+
# @return [Integer]
|
|
4330
|
+
#
|
|
4331
|
+
# @!attribute [rw] stack_instance_resource_drift_statuses
|
|
4332
|
+
# The resource drift status of the stack instance.
|
|
4333
|
+
#
|
|
4334
|
+
# * `DELETED`: The resource differs from its expected template
|
|
4335
|
+
# configuration in that the resource has been deleted.
|
|
4336
|
+
#
|
|
4337
|
+
# * `MODIFIED`: One or more resource properties differ from their
|
|
4338
|
+
# expected template values.
|
|
4339
|
+
#
|
|
4340
|
+
# * `IN_SYNC`: The resource's actual configuration matches its
|
|
4341
|
+
# expected template configuration.
|
|
4342
|
+
#
|
|
4343
|
+
# * `NOT_CHECKED`: CloudFormation doesn't currently return this
|
|
4344
|
+
# value.
|
|
4345
|
+
# @return [Array<String>]
|
|
4346
|
+
#
|
|
4347
|
+
# @!attribute [rw] stack_instance_account
|
|
4348
|
+
# The name of the Amazon Web Services account that you want to list
|
|
4349
|
+
# resource drifts for.
|
|
4350
|
+
# @return [String]
|
|
4351
|
+
#
|
|
4352
|
+
# @!attribute [rw] stack_instance_region
|
|
4353
|
+
# The name of the Region where you want to list resource drifts.
|
|
4354
|
+
# @return [String]
|
|
4355
|
+
#
|
|
4356
|
+
# @!attribute [rw] operation_id
|
|
4357
|
+
# The unique ID of the drift operation.
|
|
4358
|
+
# @return [String]
|
|
4359
|
+
#
|
|
4360
|
+
# @!attribute [rw] call_as
|
|
4361
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
|
4362
|
+
# an account administrator in the organization's management account
|
|
4363
|
+
# or as a delegated administrator in a member account.
|
|
4364
|
+
#
|
|
4365
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
|
4366
|
+
# self-managed permissions.
|
|
4367
|
+
#
|
|
4368
|
+
# * If you are signed in to the management account, specify `SELF`.
|
|
4369
|
+
#
|
|
4370
|
+
# * If you are signed in to a delegated administrator account, specify
|
|
4371
|
+
# `DELEGATED_ADMIN`.
|
|
4372
|
+
#
|
|
4373
|
+
# Your Amazon Web Services account must be registered as a delegated
|
|
4374
|
+
# administrator in the management account. For more information, see
|
|
4375
|
+
# [Register a delegated administrator][1] in the *CloudFormation
|
|
4376
|
+
# User Guide*.
|
|
4377
|
+
#
|
|
4378
|
+
#
|
|
4379
|
+
#
|
|
4380
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
|
4381
|
+
# @return [String]
|
|
4382
|
+
#
|
|
4383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstanceResourceDriftsInput AWS API Documentation
|
|
4384
|
+
#
|
|
4385
|
+
class ListStackInstanceResourceDriftsInput < Struct.new(
|
|
4386
|
+
:stack_set_name,
|
|
4387
|
+
:next_token,
|
|
4388
|
+
:max_results,
|
|
4389
|
+
:stack_instance_resource_drift_statuses,
|
|
4390
|
+
:stack_instance_account,
|
|
4391
|
+
:stack_instance_region,
|
|
4392
|
+
:operation_id,
|
|
4393
|
+
:call_as)
|
|
4394
|
+
SENSITIVE = []
|
|
4395
|
+
include Aws::Structure
|
|
4396
|
+
end
|
|
4397
|
+
|
|
4398
|
+
# @!attribute [rw] summaries
|
|
4399
|
+
# A list of `StackInstanceResourceDriftSummary` structures that
|
|
4400
|
+
# contain information about the specified stack instances.
|
|
4401
|
+
# @return [Array<Types::StackInstanceResourceDriftsSummary>]
|
|
4402
|
+
#
|
|
4403
|
+
# @!attribute [rw] next_token
|
|
4404
|
+
# If the previous paginated request didn't return all of the
|
|
4405
|
+
# remaining results, the response object's `NextToken` parameter
|
|
4406
|
+
# value is set to a token. To retrieve the next set of results, call
|
|
4407
|
+
# this action again and assign that token to the request object's
|
|
4408
|
+
# `NextToken` parameter. If there are no remaining results, the
|
|
4409
|
+
# previous response object's `NextToken` parameter is set to `null`.
|
|
4410
|
+
# @return [String]
|
|
4411
|
+
#
|
|
4412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstanceResourceDriftsOutput AWS API Documentation
|
|
4413
|
+
#
|
|
4414
|
+
class ListStackInstanceResourceDriftsOutput < Struct.new(
|
|
4415
|
+
:summaries,
|
|
4416
|
+
:next_token)
|
|
4417
|
+
SENSITIVE = []
|
|
4418
|
+
include Aws::Structure
|
|
4419
|
+
end
|
|
4420
|
+
|
|
4310
4421
|
# @!attribute [rw] stack_set_name
|
|
4311
4422
|
# The name or unique ID of the stack set that you want to list stack
|
|
4312
4423
|
# instances for.
|
|
@@ -6028,7 +6139,7 @@ module Aws::CloudFormation
|
|
|
6028
6139
|
#
|
|
6029
6140
|
#
|
|
6030
6141
|
#
|
|
6031
|
-
# [1]:
|
|
6142
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-rollback-triggers.html
|
|
6032
6143
|
#
|
|
6033
6144
|
# @!attribute [rw] rollback_triggers
|
|
6034
6145
|
# The triggers to monitor during stack creation or update actions.
|
|
@@ -6452,8 +6563,8 @@ module Aws::CloudFormation
|
|
|
6452
6563
|
#
|
|
6453
6564
|
#
|
|
6454
6565
|
#
|
|
6455
|
-
# [1]:
|
|
6456
|
-
# [2]:
|
|
6566
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
6567
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html
|
|
6457
6568
|
# @return [Boolean]
|
|
6458
6569
|
#
|
|
6459
6570
|
# @!attribute [rw] parent_id
|
|
@@ -6467,7 +6578,7 @@ module Aws::CloudFormation
|
|
|
6467
6578
|
#
|
|
6468
6579
|
#
|
|
6469
6580
|
#
|
|
6470
|
-
# [1]:
|
|
6581
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
6471
6582
|
# @return [String]
|
|
6472
6583
|
#
|
|
6473
6584
|
# @!attribute [rw] root_id
|
|
@@ -6480,7 +6591,7 @@ module Aws::CloudFormation
|
|
|
6480
6591
|
#
|
|
6481
6592
|
#
|
|
6482
6593
|
#
|
|
6483
|
-
# [1]:
|
|
6594
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
6484
6595
|
# @return [String]
|
|
6485
6596
|
#
|
|
6486
6597
|
# @!attribute [rw] drift_information
|
|
@@ -6492,7 +6603,7 @@ module Aws::CloudFormation
|
|
|
6492
6603
|
#
|
|
6493
6604
|
#
|
|
6494
6605
|
#
|
|
6495
|
-
# [1]:
|
|
6606
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
6496
6607
|
# @return [Types::StackDriftInformation]
|
|
6497
6608
|
#
|
|
6498
6609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Stack AWS API Documentation
|
|
@@ -6907,6 +7018,81 @@ module Aws::CloudFormation
|
|
|
6907
7018
|
#
|
|
6908
7019
|
class StackInstanceNotFoundException < Aws::EmptyStructure; end
|
|
6909
7020
|
|
|
7021
|
+
# The structure containing summary information about resource drifts for
|
|
7022
|
+
# a stack instance.
|
|
7023
|
+
#
|
|
7024
|
+
# @!attribute [rw] stack_id
|
|
7025
|
+
# The ID of the stack instance.
|
|
7026
|
+
# @return [String]
|
|
7027
|
+
#
|
|
7028
|
+
# @!attribute [rw] logical_resource_id
|
|
7029
|
+
# The logical name of the resource specified in the template.
|
|
7030
|
+
# @return [String]
|
|
7031
|
+
#
|
|
7032
|
+
# @!attribute [rw] physical_resource_id
|
|
7033
|
+
# The name or unique identifier that corresponds to a physical
|
|
7034
|
+
# instance ID of a resource supported by CloudFormation.
|
|
7035
|
+
# @return [String]
|
|
7036
|
+
#
|
|
7037
|
+
# @!attribute [rw] physical_resource_id_context
|
|
7038
|
+
# Context information that enables CloudFormation to uniquely identify
|
|
7039
|
+
# a resource. CloudFormation uses context key-value pairs in cases
|
|
7040
|
+
# where a resource's logical and physical IDs aren't enough to
|
|
7041
|
+
# uniquely identify that resource. Each context key-value pair
|
|
7042
|
+
# specifies a unique resource that contains the targeted resource.
|
|
7043
|
+
# @return [Array<Types::PhysicalResourceIdContextKeyValuePair>]
|
|
7044
|
+
#
|
|
7045
|
+
# @!attribute [rw] resource_type
|
|
7046
|
+
# Type of resource. For more information, go to [Amazon Web Services
|
|
7047
|
+
# Resource Types Reference][1] in the CloudFormation User Guide.
|
|
7048
|
+
#
|
|
7049
|
+
#
|
|
7050
|
+
#
|
|
7051
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
|
7052
|
+
# @return [String]
|
|
7053
|
+
#
|
|
7054
|
+
# @!attribute [rw] property_differences
|
|
7055
|
+
# Status of the actual configuration of the resource compared to its
|
|
7056
|
+
# expected configuration. These will be present only for resources
|
|
7057
|
+
# whose `StackInstanceResourceDriftStatus` is `MODIFIED`.
|
|
7058
|
+
# @return [Array<Types::PropertyDifference>]
|
|
7059
|
+
#
|
|
7060
|
+
# @!attribute [rw] stack_resource_drift_status
|
|
7061
|
+
# The drift status of the resource in a stack instance.
|
|
7062
|
+
#
|
|
7063
|
+
# * `DELETED`: The resource differs from its expected template
|
|
7064
|
+
# configuration in that the resource has been deleted.
|
|
7065
|
+
#
|
|
7066
|
+
# * `MODIFIED`: One or more resource properties differ from their
|
|
7067
|
+
# expected template values.
|
|
7068
|
+
#
|
|
7069
|
+
# * `IN_SYNC`: The resource's actual configuration matches its
|
|
7070
|
+
# expected template configuration.
|
|
7071
|
+
#
|
|
7072
|
+
# * `NOT_CHECKED`: CloudFormation doesn't currently return this
|
|
7073
|
+
# value.
|
|
7074
|
+
# @return [String]
|
|
7075
|
+
#
|
|
7076
|
+
# @!attribute [rw] timestamp
|
|
7077
|
+
# Time at which the stack instance drift detection operation was
|
|
7078
|
+
# initiated.
|
|
7079
|
+
# @return [Time]
|
|
7080
|
+
#
|
|
7081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceResourceDriftsSummary AWS API Documentation
|
|
7082
|
+
#
|
|
7083
|
+
class StackInstanceResourceDriftsSummary < Struct.new(
|
|
7084
|
+
:stack_id,
|
|
7085
|
+
:logical_resource_id,
|
|
7086
|
+
:physical_resource_id,
|
|
7087
|
+
:physical_resource_id_context,
|
|
7088
|
+
:resource_type,
|
|
7089
|
+
:property_differences,
|
|
7090
|
+
:stack_resource_drift_status,
|
|
7091
|
+
:timestamp)
|
|
7092
|
+
SENSITIVE = []
|
|
7093
|
+
include Aws::Structure
|
|
7094
|
+
end
|
|
7095
|
+
|
|
6910
7096
|
# The structure that contains summary information about a stack
|
|
6911
7097
|
# instance.
|
|
6912
7098
|
#
|
|
@@ -7080,7 +7266,7 @@ module Aws::CloudFormation
|
|
|
7080
7266
|
#
|
|
7081
7267
|
#
|
|
7082
7268
|
#
|
|
7083
|
-
# [1]:
|
|
7269
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
7084
7270
|
# @return [Types::StackResourceDriftInformation]
|
|
7085
7271
|
#
|
|
7086
7272
|
# @!attribute [rw] module_info
|
|
@@ -7170,7 +7356,7 @@ module Aws::CloudFormation
|
|
|
7170
7356
|
#
|
|
7171
7357
|
#
|
|
7172
7358
|
#
|
|
7173
|
-
# [1]:
|
|
7359
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
7174
7360
|
# @return [Types::StackResourceDriftInformation]
|
|
7175
7361
|
#
|
|
7176
7362
|
# @!attribute [rw] module_info
|
|
@@ -7216,7 +7402,7 @@ module Aws::CloudFormation
|
|
|
7216
7402
|
#
|
|
7217
7403
|
#
|
|
7218
7404
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
7219
|
-
# [2]:
|
|
7405
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
|
7220
7406
|
#
|
|
7221
7407
|
# @!attribute [rw] stack_id
|
|
7222
7408
|
# The ID of the stack.
|
|
@@ -7444,7 +7630,7 @@ module Aws::CloudFormation
|
|
|
7444
7630
|
#
|
|
7445
7631
|
#
|
|
7446
7632
|
#
|
|
7447
|
-
# [1]:
|
|
7633
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
7448
7634
|
# @return [Types::StackResourceDriftInformationSummary]
|
|
7449
7635
|
#
|
|
7450
7636
|
# @!attribute [rw] module_info
|
|
@@ -7533,7 +7719,7 @@ module Aws::CloudFormation
|
|
|
7533
7719
|
#
|
|
7534
7720
|
#
|
|
7535
7721
|
#
|
|
7536
|
-
# [1]:
|
|
7722
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html
|
|
7537
7723
|
# @return [String]
|
|
7538
7724
|
#
|
|
7539
7725
|
# @!attribute [rw] execution_role_name
|
|
@@ -7824,7 +8010,7 @@ module Aws::CloudFormation
|
|
|
7824
8010
|
#
|
|
7825
8011
|
#
|
|
7826
8012
|
#
|
|
7827
|
-
# [1]:
|
|
8013
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html
|
|
7828
8014
|
# @return [String]
|
|
7829
8015
|
#
|
|
7830
8016
|
# @!attribute [rw] execution_role_name
|
|
@@ -8323,7 +8509,7 @@ module Aws::CloudFormation
|
|
|
8323
8509
|
#
|
|
8324
8510
|
#
|
|
8325
8511
|
#
|
|
8326
|
-
# [1]:
|
|
8512
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
8327
8513
|
# @return [String]
|
|
8328
8514
|
#
|
|
8329
8515
|
# @!attribute [rw] root_id
|
|
@@ -8336,7 +8522,7 @@ module Aws::CloudFormation
|
|
|
8336
8522
|
#
|
|
8337
8523
|
#
|
|
8338
8524
|
#
|
|
8339
|
-
# [1]:
|
|
8525
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
|
8340
8526
|
# @return [String]
|
|
8341
8527
|
#
|
|
8342
8528
|
# @!attribute [rw] drift_information
|
|
@@ -8348,7 +8534,7 @@ module Aws::CloudFormation
|
|
|
8348
8534
|
#
|
|
8349
8535
|
#
|
|
8350
8536
|
#
|
|
8351
|
-
# [1]:
|
|
8537
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
|
8352
8538
|
# @return [Types::StackDriftInformationSummary]
|
|
8353
8539
|
#
|
|
8354
8540
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSummary AWS API Documentation
|
|
@@ -9145,10 +9331,10 @@ module Aws::CloudFormation
|
|
|
9145
9331
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
9146
9332
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
9147
9333
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
9148
|
-
# [8]:
|
|
9149
|
-
# [9]:
|
|
9150
|
-
# [10]:
|
|
9151
|
-
# [11]:
|
|
9334
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
|
9335
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
9336
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
|
9337
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
|
9152
9338
|
# @return [Array<String>]
|
|
9153
9339
|
#
|
|
9154
9340
|
# @!attribute [rw] resource_types
|
|
@@ -9566,10 +9752,10 @@ module Aws::CloudFormation
|
|
|
9566
9752
|
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
|
9567
9753
|
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
|
9568
9754
|
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
|
9569
|
-
# [8]:
|
|
9570
|
-
# [9]:
|
|
9571
|
-
# [10]:
|
|
9572
|
-
# [11]:
|
|
9755
|
+
# [8]: https://docs.aws.amazon.com/AWSCloudFormation/using-iam-template.html#capabilities
|
|
9756
|
+
# [9]: https://docs.aws.amazon.com/AWSCloudFormation/template-macros.html
|
|
9757
|
+
# [10]: https://docs.aws.amazon.com/AWSCloudFormation/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
|
9758
|
+
# [11]: https://docs.aws.amazon.com/AWSCloudFormation/transform-aws-serverless.html
|
|
9573
9759
|
# @return [Array<String>]
|
|
9574
9760
|
#
|
|
9575
9761
|
# @!attribute [rw] tags
|
|
@@ -9629,7 +9815,7 @@ module Aws::CloudFormation
|
|
|
9629
9815
|
#
|
|
9630
9816
|
#
|
|
9631
9817
|
#
|
|
9632
|
-
# [1]:
|
|
9818
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/stacksets-prereqs.html
|
|
9633
9819
|
# @return [String]
|
|
9634
9820
|
#
|
|
9635
9821
|
# @!attribute [rw] execution_role_name
|
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.87.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: 2023-07-
|
|
11
|
+
date: 2023-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|