aws-sdk-cloudformation 1.34.0 → 1.39.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/lib/aws-sdk-cloudformation.rb +3 -1
- data/lib/aws-sdk-cloudformation/client.rb +33 -8
- data/lib/aws-sdk-cloudformation/client_api.rb +39 -0
- data/lib/aws-sdk-cloudformation/customizations.rb +1 -0
- data/lib/aws-sdk-cloudformation/errors.rb +2 -0
- data/lib/aws-sdk-cloudformation/event.rb +2 -0
- data/lib/aws-sdk-cloudformation/resource.rb +3 -1
- data/lib/aws-sdk-cloudformation/stack.rb +2 -0
- data/lib/aws-sdk-cloudformation/stack_resource.rb +2 -0
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +2 -0
- data/lib/aws-sdk-cloudformation/types.rb +195 -12
- data/lib/aws-sdk-cloudformation/waiters.rb +65 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 065e6cf82ab5cc577cd5dd7d6155ae054b73100491ef16a5805d440b176555ba
|
4
|
+
data.tar.gz: 9c94f397f6d82039c328526801c8ec4d7c88cf9b5c5475579d3cff50f9e83d19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 458f12ae5ebd59265967d91aae10e6a7ba3ae45ce84a9c04dda83038b007b60033be698b0c55f681c169eaf534e23f76a49bafcab80d78bfe14c0ac062400b46
|
7
|
+
data.tar.gz: a6475ffebc3770d10c20dcfe78765c106317aeadb3df0217a6a9573094fa7bedb3ee1e210417dde17d74a2d2f1a8eb24974541a75e3c9769afdaf9c43882deb8
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -50,6 +52,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
50
52
|
# @service
|
51
53
|
module Aws::CloudFormation
|
52
54
|
|
53
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.39.0'
|
54
56
|
|
55
57
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::CloudFormation
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::CloudFormation
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::CloudFormation
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -1742,6 +1746,8 @@ module Aws::CloudFormation
|
|
1742
1746
|
# * {Types::DescribeAccountLimitsOutput#account_limits #account_limits} => Array<Types::AccountLimit>
|
1743
1747
|
# * {Types::DescribeAccountLimitsOutput#next_token #next_token} => String
|
1744
1748
|
#
|
1749
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1750
|
+
#
|
1745
1751
|
# @example Request syntax with placeholder values
|
1746
1752
|
#
|
1747
1753
|
# resp = client.describe_account_limits({
|
@@ -2509,6 +2515,7 @@ module Aws::CloudFormation
|
|
2509
2515
|
# * stack_delete_complete
|
2510
2516
|
# * stack_exists
|
2511
2517
|
# * stack_import_complete
|
2518
|
+
# * stack_rollback_complete
|
2512
2519
|
# * stack_update_complete
|
2513
2520
|
#
|
2514
2521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks AWS API Documentation
|
@@ -2558,6 +2565,7 @@ module Aws::CloudFormation
|
|
2558
2565
|
# * {Types::DescribeTypeOutput#type #type} => String
|
2559
2566
|
# * {Types::DescribeTypeOutput#type_name #type_name} => String
|
2560
2567
|
# * {Types::DescribeTypeOutput#default_version_id #default_version_id} => String
|
2568
|
+
# * {Types::DescribeTypeOutput#is_default_version #is_default_version} => Boolean
|
2561
2569
|
# * {Types::DescribeTypeOutput#description #description} => String
|
2562
2570
|
# * {Types::DescribeTypeOutput#schema #schema} => String
|
2563
2571
|
# * {Types::DescribeTypeOutput#provisioning_type #provisioning_type} => String
|
@@ -2585,6 +2593,7 @@ module Aws::CloudFormation
|
|
2585
2593
|
# resp.type #=> String, one of "RESOURCE"
|
2586
2594
|
# resp.type_name #=> String
|
2587
2595
|
# resp.default_version_id #=> String
|
2596
|
+
# resp.is_default_version #=> Boolean
|
2588
2597
|
# resp.description #=> String
|
2589
2598
|
# resp.schema #=> String
|
2590
2599
|
# resp.provisioning_type #=> String, one of "NON_PROVISIONABLE", "IMMUTABLE", "FULLY_MUTABLE"
|
@@ -3218,6 +3227,8 @@ module Aws::CloudFormation
|
|
3218
3227
|
# * {Types::ListChangeSetsOutput#summaries #summaries} => Array<Types::ChangeSetSummary>
|
3219
3228
|
# * {Types::ListChangeSetsOutput#next_token #next_token} => String
|
3220
3229
|
#
|
3230
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3231
|
+
#
|
3221
3232
|
# @example Request syntax with placeholder values
|
3222
3233
|
#
|
3223
3234
|
# resp = client.list_change_sets({
|
@@ -3378,6 +3389,8 @@ module Aws::CloudFormation
|
|
3378
3389
|
# * {Types::ListStackInstancesOutput#summaries #summaries} => Array<Types::StackInstanceSummary>
|
3379
3390
|
# * {Types::ListStackInstancesOutput#next_token #next_token} => String
|
3380
3391
|
#
|
3392
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3393
|
+
#
|
3381
3394
|
# @example Request syntax with placeholder values
|
3382
3395
|
#
|
3383
3396
|
# resp = client.list_stack_instances({
|
@@ -3497,6 +3510,8 @@ module Aws::CloudFormation
|
|
3497
3510
|
# * {Types::ListStackSetOperationResultsOutput#summaries #summaries} => Array<Types::StackSetOperationResultSummary>
|
3498
3511
|
# * {Types::ListStackSetOperationResultsOutput#next_token #next_token} => String
|
3499
3512
|
#
|
3513
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3514
|
+
#
|
3500
3515
|
# @example Request syntax with placeholder values
|
3501
3516
|
#
|
3502
3517
|
# resp = client.list_stack_set_operation_results({
|
@@ -3553,6 +3568,8 @@ module Aws::CloudFormation
|
|
3553
3568
|
# * {Types::ListStackSetOperationsOutput#summaries #summaries} => Array<Types::StackSetOperationSummary>
|
3554
3569
|
# * {Types::ListStackSetOperationsOutput#next_token #next_token} => String
|
3555
3570
|
#
|
3571
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3572
|
+
#
|
3556
3573
|
# @example Request syntax with placeholder values
|
3557
3574
|
#
|
3558
3575
|
# resp = client.list_stack_set_operations({
|
@@ -3606,6 +3623,8 @@ module Aws::CloudFormation
|
|
3606
3623
|
# * {Types::ListStackSetsOutput#summaries #summaries} => Array<Types::StackSetSummary>
|
3607
3624
|
# * {Types::ListStackSetsOutput#next_token #next_token} => String
|
3608
3625
|
#
|
3626
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3627
|
+
#
|
3609
3628
|
# @example Request syntax with placeholder values
|
3610
3629
|
#
|
3611
3630
|
# resp = client.list_stack_sets({
|
@@ -3838,6 +3857,7 @@ module Aws::CloudFormation
|
|
3838
3857
|
# resp.type_version_summaries[0].type #=> String, one of "RESOURCE"
|
3839
3858
|
# resp.type_version_summaries[0].type_name #=> String
|
3840
3859
|
# resp.type_version_summaries[0].version_id #=> String
|
3860
|
+
# resp.type_version_summaries[0].is_default_version #=> Boolean
|
3841
3861
|
# resp.type_version_summaries[0].arn #=> String
|
3842
3862
|
# resp.type_version_summaries[0].time_created #=> Time
|
3843
3863
|
# resp.type_version_summaries[0].description #=> String
|
@@ -4112,14 +4132,17 @@ module Aws::CloudFormation
|
|
4112
4132
|
# Specifies logging configuration information for a type.
|
4113
4133
|
#
|
4114
4134
|
# @option params [String] :execution_role_arn
|
4115
|
-
# The Amazon Resource Name (ARN) of the IAM
|
4116
|
-
#
|
4117
|
-
# handlers, you must create an <i> <a
|
4135
|
+
# The Amazon Resource Name (ARN) of the IAM role for CloudFormation to
|
4136
|
+
# assume when invoking the resource provider. If your resource type
|
4137
|
+
# calls AWS APIs in any of its handlers, you must create an <i> <a
|
4118
4138
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
4119
4139
|
# execution role</a> </i> that includes the necessary permissions to
|
4120
4140
|
# call those AWS APIs, and provision that execution role in your
|
4121
|
-
# account. CloudFormation
|
4122
|
-
#
|
4141
|
+
# account. When CloudFormation needs to invoke the resource provider
|
4142
|
+
# handler, CloudFormation assumes this execution role to create a
|
4143
|
+
# temporary session token, which it then passes to the resource provider
|
4144
|
+
# handler, thereby supplying your resource provider with the appropriate
|
4145
|
+
# credentials.
|
4123
4146
|
#
|
4124
4147
|
# @option params [String] :client_request_token
|
4125
4148
|
# A unique identifier that acts as an idempotency key for this
|
@@ -5282,7 +5305,7 @@ module Aws::CloudFormation
|
|
5282
5305
|
params: params,
|
5283
5306
|
config: config)
|
5284
5307
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5285
|
-
context[:gem_version] = '1.
|
5308
|
+
context[:gem_version] = '1.39.0'
|
5286
5309
|
Seahorse::Client::Request.new(handlers, context)
|
5287
5310
|
end
|
5288
5311
|
|
@@ -5355,6 +5378,7 @@ module Aws::CloudFormation
|
|
5355
5378
|
# | stack_delete_complete | {Client#describe_stacks} | 30 | 120 |
|
5356
5379
|
# | stack_exists | {Client#describe_stacks} | 5 | 20 |
|
5357
5380
|
# | stack_import_complete | {Client#describe_stacks} | 30 | 120 |
|
5381
|
+
# | stack_rollback_complete | {Client#describe_stacks} | 30 | 120 |
|
5358
5382
|
# | stack_update_complete | {Client#describe_stacks} | 30 | 120 |
|
5359
5383
|
# | type_registration_complete | {Client#describe_type_registration} | 30 | 120 |
|
5360
5384
|
#
|
@@ -5412,6 +5436,7 @@ module Aws::CloudFormation
|
|
5412
5436
|
stack_delete_complete: Waiters::StackDeleteComplete,
|
5413
5437
|
stack_exists: Waiters::StackExists,
|
5414
5438
|
stack_import_complete: Waiters::StackImportComplete,
|
5439
|
+
stack_rollback_complete: Waiters::StackRollbackComplete,
|
5415
5440
|
stack_update_complete: Waiters::StackUpdateComplete,
|
5416
5441
|
type_registration_complete: Waiters::TypeRegistrationComplete
|
5417
5442
|
}
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -139,6 +141,7 @@ module Aws::CloudFormation
|
|
139
141
|
InvalidChangeSetStatusException = Shapes::StructureShape.new(name: 'InvalidChangeSetStatusException')
|
140
142
|
InvalidOperationException = Shapes::StructureShape.new(name: 'InvalidOperationException')
|
141
143
|
InvalidStateTransitionException = Shapes::StructureShape.new(name: 'InvalidStateTransitionException')
|
144
|
+
IsDefaultVersion = Shapes::BooleanShape.new(name: 'IsDefaultVersion')
|
142
145
|
Key = Shapes::StringShape.new(name: 'Key')
|
143
146
|
LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
|
144
147
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
@@ -663,6 +666,7 @@ module Aws::CloudFormation
|
|
663
666
|
DescribeTypeOutput.add_member(:type, Shapes::ShapeRef.new(shape: RegistryType, location_name: "Type"))
|
664
667
|
DescribeTypeOutput.add_member(:type_name, Shapes::ShapeRef.new(shape: TypeName, location_name: "TypeName"))
|
665
668
|
DescribeTypeOutput.add_member(:default_version_id, Shapes::ShapeRef.new(shape: TypeVersionId, location_name: "DefaultVersionId"))
|
669
|
+
DescribeTypeOutput.add_member(:is_default_version, Shapes::ShapeRef.new(shape: IsDefaultVersion, location_name: "IsDefaultVersion"))
|
666
670
|
DescribeTypeOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
667
671
|
DescribeTypeOutput.add_member(:schema, Shapes::ShapeRef.new(shape: TypeSchema, location_name: "Schema"))
|
668
672
|
DescribeTypeOutput.add_member(:provisioning_type, Shapes::ShapeRef.new(shape: ProvisioningType, location_name: "ProvisioningType"))
|
@@ -1336,6 +1340,7 @@ module Aws::CloudFormation
|
|
1336
1340
|
TypeVersionSummary.add_member(:type, Shapes::ShapeRef.new(shape: RegistryType, location_name: "Type"))
|
1337
1341
|
TypeVersionSummary.add_member(:type_name, Shapes::ShapeRef.new(shape: TypeName, location_name: "TypeName"))
|
1338
1342
|
TypeVersionSummary.add_member(:version_id, Shapes::ShapeRef.new(shape: TypeVersionId, location_name: "VersionId"))
|
1343
|
+
TypeVersionSummary.add_member(:is_default_version, Shapes::ShapeRef.new(shape: IsDefaultVersion, location_name: "IsDefaultVersion"))
|
1339
1344
|
TypeVersionSummary.add_member(:arn, Shapes::ShapeRef.new(shape: TypeArn, location_name: "Arn"))
|
1340
1345
|
TypeVersionSummary.add_member(:time_created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "TimeCreated"))
|
1341
1346
|
TypeVersionSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
@@ -1554,6 +1559,11 @@ module Aws::CloudFormation
|
|
1554
1559
|
o.http_request_uri = "/"
|
1555
1560
|
o.input = Shapes::ShapeRef.new(shape: DescribeAccountLimitsInput)
|
1556
1561
|
o.output = Shapes::ShapeRef.new(shape: DescribeAccountLimitsOutput)
|
1562
|
+
o[:pager] = Aws::Pager.new(
|
1563
|
+
tokens: {
|
1564
|
+
"next_token" => "next_token"
|
1565
|
+
}
|
1566
|
+
)
|
1557
1567
|
end)
|
1558
1568
|
|
1559
1569
|
api.add_operation(:describe_change_set, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1756,6 +1766,11 @@ module Aws::CloudFormation
|
|
1756
1766
|
o.http_request_uri = "/"
|
1757
1767
|
o.input = Shapes::ShapeRef.new(shape: ListChangeSetsInput)
|
1758
1768
|
o.output = Shapes::ShapeRef.new(shape: ListChangeSetsOutput)
|
1769
|
+
o[:pager] = Aws::Pager.new(
|
1770
|
+
tokens: {
|
1771
|
+
"next_token" => "next_token"
|
1772
|
+
}
|
1773
|
+
)
|
1759
1774
|
end)
|
1760
1775
|
|
1761
1776
|
api.add_operation(:list_exports, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1791,6 +1806,12 @@ module Aws::CloudFormation
|
|
1791
1806
|
o.input = Shapes::ShapeRef.new(shape: ListStackInstancesInput)
|
1792
1807
|
o.output = Shapes::ShapeRef.new(shape: ListStackInstancesOutput)
|
1793
1808
|
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
1809
|
+
o[:pager] = Aws::Pager.new(
|
1810
|
+
limit_key: "max_results",
|
1811
|
+
tokens: {
|
1812
|
+
"next_token" => "next_token"
|
1813
|
+
}
|
1814
|
+
)
|
1794
1815
|
end)
|
1795
1816
|
|
1796
1817
|
api.add_operation(:list_stack_resources, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1814,6 +1835,12 @@ module Aws::CloudFormation
|
|
1814
1835
|
o.output = Shapes::ShapeRef.new(shape: ListStackSetOperationResultsOutput)
|
1815
1836
|
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
1816
1837
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotFoundException)
|
1838
|
+
o[:pager] = Aws::Pager.new(
|
1839
|
+
limit_key: "max_results",
|
1840
|
+
tokens: {
|
1841
|
+
"next_token" => "next_token"
|
1842
|
+
}
|
1843
|
+
)
|
1817
1844
|
end)
|
1818
1845
|
|
1819
1846
|
api.add_operation(:list_stack_set_operations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1823,6 +1850,12 @@ module Aws::CloudFormation
|
|
1823
1850
|
o.input = Shapes::ShapeRef.new(shape: ListStackSetOperationsInput)
|
1824
1851
|
o.output = Shapes::ShapeRef.new(shape: ListStackSetOperationsOutput)
|
1825
1852
|
o.errors << Shapes::ShapeRef.new(shape: StackSetNotFoundException)
|
1853
|
+
o[:pager] = Aws::Pager.new(
|
1854
|
+
limit_key: "max_results",
|
1855
|
+
tokens: {
|
1856
|
+
"next_token" => "next_token"
|
1857
|
+
}
|
1858
|
+
)
|
1826
1859
|
end)
|
1827
1860
|
|
1828
1861
|
api.add_operation(:list_stack_sets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1831,6 +1864,12 @@ module Aws::CloudFormation
|
|
1831
1864
|
o.http_request_uri = "/"
|
1832
1865
|
o.input = Shapes::ShapeRef.new(shape: ListStackSetsInput)
|
1833
1866
|
o.output = Shapes::ShapeRef.new(shape: ListStackSetsOutput)
|
1867
|
+
o[:pager] = Aws::Pager.new(
|
1868
|
+
limit_key: "max_results",
|
1869
|
+
tokens: {
|
1870
|
+
"next_token" => "next_token"
|
1871
|
+
}
|
1872
|
+
)
|
1834
1873
|
end)
|
1835
1874
|
|
1836
1875
|
api.add_operation(:list_stacks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -316,7 +318,7 @@ module Aws::CloudFormation
|
|
316
318
|
# [2]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
317
319
|
# @return [Stack]
|
318
320
|
def create_stack(options = {})
|
319
|
-
|
321
|
+
@client.create_stack(options)
|
320
322
|
Stack.new(
|
321
323
|
name: options[:stack_name],
|
322
324
|
client: @client
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -69,6 +71,7 @@ module Aws::CloudFormation
|
|
69
71
|
class AccountGateResult < Struct.new(
|
70
72
|
:status,
|
71
73
|
:status_reason)
|
74
|
+
SENSITIVE = []
|
72
75
|
include Aws::Structure
|
73
76
|
end
|
74
77
|
|
@@ -106,6 +109,7 @@ module Aws::CloudFormation
|
|
106
109
|
class AccountLimit < Struct.new(
|
107
110
|
:name,
|
108
111
|
:value)
|
112
|
+
SENSITIVE = []
|
109
113
|
include Aws::Structure
|
110
114
|
end
|
111
115
|
|
@@ -146,6 +150,7 @@ module Aws::CloudFormation
|
|
146
150
|
class AutoDeployment < Struct.new(
|
147
151
|
:enabled,
|
148
152
|
:retain_stacks_on_account_removal)
|
153
|
+
SENSITIVE = []
|
149
154
|
include Aws::Structure
|
150
155
|
end
|
151
156
|
|
@@ -158,6 +163,7 @@ module Aws::CloudFormation
|
|
158
163
|
#
|
159
164
|
class CFNRegistryException < Struct.new(
|
160
165
|
:message)
|
166
|
+
SENSITIVE = []
|
161
167
|
include Aws::Structure
|
162
168
|
end
|
163
169
|
|
@@ -188,6 +194,7 @@ module Aws::CloudFormation
|
|
188
194
|
class CancelUpdateStackInput < Struct.new(
|
189
195
|
:stack_name,
|
190
196
|
:client_request_token)
|
197
|
+
SENSITIVE = []
|
191
198
|
include Aws::Structure
|
192
199
|
end
|
193
200
|
|
@@ -209,6 +216,7 @@ module Aws::CloudFormation
|
|
209
216
|
class Change < Struct.new(
|
210
217
|
:type,
|
211
218
|
:resource_change)
|
219
|
+
SENSITIVE = []
|
212
220
|
include Aws::Structure
|
213
221
|
end
|
214
222
|
|
@@ -277,6 +285,7 @@ module Aws::CloudFormation
|
|
277
285
|
:status_reason,
|
278
286
|
:creation_time,
|
279
287
|
:description)
|
288
|
+
SENSITIVE = []
|
280
289
|
include Aws::Structure
|
281
290
|
end
|
282
291
|
|
@@ -382,6 +391,7 @@ module Aws::CloudFormation
|
|
382
391
|
:role_arn,
|
383
392
|
:resources_to_skip,
|
384
393
|
:client_request_token)
|
394
|
+
SENSITIVE = []
|
385
395
|
include Aws::Structure
|
386
396
|
end
|
387
397
|
|
@@ -684,6 +694,7 @@ module Aws::CloudFormation
|
|
684
694
|
:description,
|
685
695
|
:change_set_type,
|
686
696
|
:resources_to_import)
|
697
|
+
SENSITIVE = []
|
687
698
|
include Aws::Structure
|
688
699
|
end
|
689
700
|
|
@@ -702,6 +713,7 @@ module Aws::CloudFormation
|
|
702
713
|
class CreateChangeSetOutput < Struct.new(
|
703
714
|
:id,
|
704
715
|
:stack_id)
|
716
|
+
SENSITIVE = []
|
705
717
|
include Aws::Structure
|
706
718
|
end
|
707
719
|
|
@@ -1045,6 +1057,7 @@ module Aws::CloudFormation
|
|
1045
1057
|
:tags,
|
1046
1058
|
:client_request_token,
|
1047
1059
|
:enable_termination_protection)
|
1060
|
+
SENSITIVE = []
|
1048
1061
|
include Aws::Structure
|
1049
1062
|
end
|
1050
1063
|
|
@@ -1176,6 +1189,7 @@ module Aws::CloudFormation
|
|
1176
1189
|
:parameter_overrides,
|
1177
1190
|
:operation_preferences,
|
1178
1191
|
:operation_id)
|
1192
|
+
SENSITIVE = []
|
1179
1193
|
include Aws::Structure
|
1180
1194
|
end
|
1181
1195
|
|
@@ -1187,6 +1201,7 @@ module Aws::CloudFormation
|
|
1187
1201
|
#
|
1188
1202
|
class CreateStackInstancesOutput < Struct.new(
|
1189
1203
|
:operation_id)
|
1204
|
+
SENSITIVE = []
|
1190
1205
|
include Aws::Structure
|
1191
1206
|
end
|
1192
1207
|
|
@@ -1200,6 +1215,7 @@ module Aws::CloudFormation
|
|
1200
1215
|
#
|
1201
1216
|
class CreateStackOutput < Struct.new(
|
1202
1217
|
:stack_id)
|
1218
|
+
SENSITIVE = []
|
1203
1219
|
include Aws::Structure
|
1204
1220
|
end
|
1205
1221
|
|
@@ -1456,6 +1472,7 @@ module Aws::CloudFormation
|
|
1456
1472
|
:permission_model,
|
1457
1473
|
:auto_deployment,
|
1458
1474
|
:client_request_token)
|
1475
|
+
SENSITIVE = []
|
1459
1476
|
include Aws::Structure
|
1460
1477
|
end
|
1461
1478
|
|
@@ -1467,6 +1484,7 @@ module Aws::CloudFormation
|
|
1467
1484
|
#
|
1468
1485
|
class CreateStackSetOutput < Struct.new(
|
1469
1486
|
:stack_set_id)
|
1487
|
+
SENSITIVE = []
|
1470
1488
|
include Aws::Structure
|
1471
1489
|
end
|
1472
1490
|
|
@@ -1501,6 +1519,7 @@ module Aws::CloudFormation
|
|
1501
1519
|
class DeleteChangeSetInput < Struct.new(
|
1502
1520
|
:change_set_name,
|
1503
1521
|
:stack_name)
|
1522
|
+
SENSITIVE = []
|
1504
1523
|
include Aws::Structure
|
1505
1524
|
end
|
1506
1525
|
|
@@ -1577,6 +1596,7 @@ module Aws::CloudFormation
|
|
1577
1596
|
:retain_resources,
|
1578
1597
|
:role_arn,
|
1579
1598
|
:client_request_token)
|
1599
|
+
SENSITIVE = []
|
1580
1600
|
include Aws::Structure
|
1581
1601
|
end
|
1582
1602
|
|
@@ -1671,6 +1691,7 @@ module Aws::CloudFormation
|
|
1671
1691
|
:operation_preferences,
|
1672
1692
|
:retain_stacks,
|
1673
1693
|
:operation_id)
|
1694
|
+
SENSITIVE = []
|
1674
1695
|
include Aws::Structure
|
1675
1696
|
end
|
1676
1697
|
|
@@ -1682,6 +1703,7 @@ module Aws::CloudFormation
|
|
1682
1703
|
#
|
1683
1704
|
class DeleteStackInstancesOutput < Struct.new(
|
1684
1705
|
:operation_id)
|
1706
|
+
SENSITIVE = []
|
1685
1707
|
include Aws::Structure
|
1686
1708
|
end
|
1687
1709
|
|
@@ -1701,6 +1723,7 @@ module Aws::CloudFormation
|
|
1701
1723
|
#
|
1702
1724
|
class DeleteStackSetInput < Struct.new(
|
1703
1725
|
:stack_set_name)
|
1726
|
+
SENSITIVE = []
|
1704
1727
|
include Aws::Structure
|
1705
1728
|
end
|
1706
1729
|
|
@@ -1740,6 +1763,7 @@ module Aws::CloudFormation
|
|
1740
1763
|
class DeploymentTargets < Struct.new(
|
1741
1764
|
:accounts,
|
1742
1765
|
:organizational_unit_ids)
|
1766
|
+
SENSITIVE = []
|
1743
1767
|
include Aws::Structure
|
1744
1768
|
end
|
1745
1769
|
|
@@ -1789,6 +1813,7 @@ module Aws::CloudFormation
|
|
1789
1813
|
:type,
|
1790
1814
|
:type_name,
|
1791
1815
|
:version_id)
|
1816
|
+
SENSITIVE = []
|
1792
1817
|
include Aws::Structure
|
1793
1818
|
end
|
1794
1819
|
|
@@ -1814,6 +1839,7 @@ module Aws::CloudFormation
|
|
1814
1839
|
#
|
1815
1840
|
class DescribeAccountLimitsInput < Struct.new(
|
1816
1841
|
:next_token)
|
1842
|
+
SENSITIVE = []
|
1817
1843
|
include Aws::Structure
|
1818
1844
|
end
|
1819
1845
|
|
@@ -1835,6 +1861,7 @@ module Aws::CloudFormation
|
|
1835
1861
|
class DescribeAccountLimitsOutput < Struct.new(
|
1836
1862
|
:account_limits,
|
1837
1863
|
:next_token)
|
1864
|
+
SENSITIVE = []
|
1838
1865
|
include Aws::Structure
|
1839
1866
|
end
|
1840
1867
|
|
@@ -1870,6 +1897,7 @@ module Aws::CloudFormation
|
|
1870
1897
|
:change_set_name,
|
1871
1898
|
:stack_name,
|
1872
1899
|
:next_token)
|
1900
|
+
SENSITIVE = []
|
1873
1901
|
include Aws::Structure
|
1874
1902
|
end
|
1875
1903
|
|
@@ -1979,6 +2007,7 @@ module Aws::CloudFormation
|
|
1979
2007
|
:tags,
|
1980
2008
|
:changes,
|
1981
2009
|
:next_token)
|
2010
|
+
SENSITIVE = []
|
1982
2011
|
include Aws::Structure
|
1983
2012
|
end
|
1984
2013
|
|
@@ -2002,6 +2031,7 @@ module Aws::CloudFormation
|
|
2002
2031
|
#
|
2003
2032
|
class DescribeStackDriftDetectionStatusInput < Struct.new(
|
2004
2033
|
:stack_drift_detection_id)
|
2034
|
+
SENSITIVE = []
|
2005
2035
|
include Aws::Structure
|
2006
2036
|
end
|
2007
2037
|
|
@@ -2082,6 +2112,7 @@ module Aws::CloudFormation
|
|
2082
2112
|
:detection_status_reason,
|
2083
2113
|
:drifted_stack_resource_count,
|
2084
2114
|
:timestamp)
|
2115
|
+
SENSITIVE = []
|
2085
2116
|
include Aws::Structure
|
2086
2117
|
end
|
2087
2118
|
|
@@ -2117,6 +2148,7 @@ module Aws::CloudFormation
|
|
2117
2148
|
class DescribeStackEventsInput < Struct.new(
|
2118
2149
|
:stack_name,
|
2119
2150
|
:next_token)
|
2151
|
+
SENSITIVE = []
|
2120
2152
|
include Aws::Structure
|
2121
2153
|
end
|
2122
2154
|
|
@@ -2137,6 +2169,7 @@ module Aws::CloudFormation
|
|
2137
2169
|
class DescribeStackEventsOutput < Struct.new(
|
2138
2170
|
:stack_events,
|
2139
2171
|
:next_token)
|
2172
|
+
SENSITIVE = []
|
2140
2173
|
include Aws::Structure
|
2141
2174
|
end
|
2142
2175
|
|
@@ -2169,6 +2202,7 @@ module Aws::CloudFormation
|
|
2169
2202
|
:stack_set_name,
|
2170
2203
|
:stack_instance_account,
|
2171
2204
|
:stack_instance_region)
|
2205
|
+
SENSITIVE = []
|
2172
2206
|
include Aws::Structure
|
2173
2207
|
end
|
2174
2208
|
|
@@ -2180,6 +2214,7 @@ module Aws::CloudFormation
|
|
2180
2214
|
#
|
2181
2215
|
class DescribeStackInstanceOutput < Struct.new(
|
2182
2216
|
:stack_instance)
|
2217
|
+
SENSITIVE = []
|
2183
2218
|
include Aws::Structure
|
2184
2219
|
end
|
2185
2220
|
|
@@ -2233,6 +2268,7 @@ module Aws::CloudFormation
|
|
2233
2268
|
:stack_resource_drift_status_filters,
|
2234
2269
|
:next_token,
|
2235
2270
|
:max_results)
|
2271
|
+
SENSITIVE = []
|
2236
2272
|
include Aws::Structure
|
2237
2273
|
end
|
2238
2274
|
|
@@ -2267,6 +2303,7 @@ module Aws::CloudFormation
|
|
2267
2303
|
class DescribeStackResourceDriftsOutput < Struct.new(
|
2268
2304
|
:stack_resource_drifts,
|
2269
2305
|
:next_token)
|
2306
|
+
SENSITIVE = []
|
2270
2307
|
include Aws::Structure
|
2271
2308
|
end
|
2272
2309
|
|
@@ -2303,6 +2340,7 @@ module Aws::CloudFormation
|
|
2303
2340
|
class DescribeStackResourceInput < Struct.new(
|
2304
2341
|
:stack_name,
|
2305
2342
|
:logical_resource_id)
|
2343
|
+
SENSITIVE = []
|
2306
2344
|
include Aws::Structure
|
2307
2345
|
end
|
2308
2346
|
|
@@ -2317,6 +2355,7 @@ module Aws::CloudFormation
|
|
2317
2355
|
#
|
2318
2356
|
class DescribeStackResourceOutput < Struct.new(
|
2319
2357
|
:stack_resource_detail)
|
2358
|
+
SENSITIVE = []
|
2320
2359
|
include Aws::Structure
|
2321
2360
|
end
|
2322
2361
|
|
@@ -2374,6 +2413,7 @@ module Aws::CloudFormation
|
|
2374
2413
|
:stack_name,
|
2375
2414
|
:logical_resource_id,
|
2376
2415
|
:physical_resource_id)
|
2416
|
+
SENSITIVE = []
|
2377
2417
|
include Aws::Structure
|
2378
2418
|
end
|
2379
2419
|
|
@@ -2387,6 +2427,7 @@ module Aws::CloudFormation
|
|
2387
2427
|
#
|
2388
2428
|
class DescribeStackResourcesOutput < Struct.new(
|
2389
2429
|
:stack_resources)
|
2430
|
+
SENSITIVE = []
|
2390
2431
|
include Aws::Structure
|
2391
2432
|
end
|
2392
2433
|
|
@@ -2405,6 +2446,7 @@ module Aws::CloudFormation
|
|
2405
2446
|
#
|
2406
2447
|
class DescribeStackSetInput < Struct.new(
|
2407
2448
|
:stack_set_name)
|
2449
|
+
SENSITIVE = []
|
2408
2450
|
include Aws::Structure
|
2409
2451
|
end
|
2410
2452
|
|
@@ -2430,6 +2472,7 @@ module Aws::CloudFormation
|
|
2430
2472
|
class DescribeStackSetOperationInput < Struct.new(
|
2431
2473
|
:stack_set_name,
|
2432
2474
|
:operation_id)
|
2475
|
+
SENSITIVE = []
|
2433
2476
|
include Aws::Structure
|
2434
2477
|
end
|
2435
2478
|
|
@@ -2441,6 +2484,7 @@ module Aws::CloudFormation
|
|
2441
2484
|
#
|
2442
2485
|
class DescribeStackSetOperationOutput < Struct.new(
|
2443
2486
|
:stack_set_operation)
|
2487
|
+
SENSITIVE = []
|
2444
2488
|
include Aws::Structure
|
2445
2489
|
end
|
2446
2490
|
|
@@ -2452,6 +2496,7 @@ module Aws::CloudFormation
|
|
2452
2496
|
#
|
2453
2497
|
class DescribeStackSetOutput < Struct.new(
|
2454
2498
|
:stack_set)
|
2499
|
+
SENSITIVE = []
|
2455
2500
|
include Aws::Structure
|
2456
2501
|
end
|
2457
2502
|
|
@@ -2487,6 +2532,7 @@ module Aws::CloudFormation
|
|
2487
2532
|
class DescribeStacksInput < Struct.new(
|
2488
2533
|
:stack_name,
|
2489
2534
|
:next_token)
|
2535
|
+
SENSITIVE = []
|
2490
2536
|
include Aws::Structure
|
2491
2537
|
end
|
2492
2538
|
|
@@ -2507,6 +2553,7 @@ module Aws::CloudFormation
|
|
2507
2553
|
class DescribeStacksOutput < Struct.new(
|
2508
2554
|
:stacks,
|
2509
2555
|
:next_token)
|
2556
|
+
SENSITIVE = []
|
2510
2557
|
include Aws::Structure
|
2511
2558
|
end
|
2512
2559
|
|
@@ -2560,6 +2607,7 @@ module Aws::CloudFormation
|
|
2560
2607
|
:type_name,
|
2561
2608
|
:arn,
|
2562
2609
|
:version_id)
|
2610
|
+
SENSITIVE = []
|
2563
2611
|
include Aws::Structure
|
2564
2612
|
end
|
2565
2613
|
|
@@ -2584,6 +2632,10 @@ module Aws::CloudFormation
|
|
2584
2632
|
# To set the default version of a type, use ` SetTypeDefaultVersion `.
|
2585
2633
|
# @return [String]
|
2586
2634
|
#
|
2635
|
+
# @!attribute [rw] is_default_version
|
2636
|
+
# Whether the specified type version is set as the default version.
|
2637
|
+
# @return [Boolean]
|
2638
|
+
#
|
2587
2639
|
# @!attribute [rw] description
|
2588
2640
|
# The description of the registered type.
|
2589
2641
|
# @return [String]
|
@@ -2688,6 +2740,7 @@ module Aws::CloudFormation
|
|
2688
2740
|
:type,
|
2689
2741
|
:type_name,
|
2690
2742
|
:default_version_id,
|
2743
|
+
:is_default_version,
|
2691
2744
|
:description,
|
2692
2745
|
:schema,
|
2693
2746
|
:provisioning_type,
|
@@ -2699,6 +2752,7 @@ module Aws::CloudFormation
|
|
2699
2752
|
:documentation_url,
|
2700
2753
|
:last_updated,
|
2701
2754
|
:time_created)
|
2755
|
+
SENSITIVE = []
|
2702
2756
|
include Aws::Structure
|
2703
2757
|
end
|
2704
2758
|
|
@@ -2720,6 +2774,7 @@ module Aws::CloudFormation
|
|
2720
2774
|
#
|
2721
2775
|
class DescribeTypeRegistrationInput < Struct.new(
|
2722
2776
|
:registration_token)
|
2777
|
+
SENSITIVE = []
|
2723
2778
|
include Aws::Structure
|
2724
2779
|
end
|
2725
2780
|
|
@@ -2753,6 +2808,7 @@ module Aws::CloudFormation
|
|
2753
2808
|
:description,
|
2754
2809
|
:type_arn,
|
2755
2810
|
:type_version_arn)
|
2811
|
+
SENSITIVE = []
|
2756
2812
|
include Aws::Structure
|
2757
2813
|
end
|
2758
2814
|
|
@@ -2777,6 +2833,7 @@ module Aws::CloudFormation
|
|
2777
2833
|
class DetectStackDriftInput < Struct.new(
|
2778
2834
|
:stack_name,
|
2779
2835
|
:logical_resource_ids)
|
2836
|
+
SENSITIVE = []
|
2780
2837
|
include Aws::Structure
|
2781
2838
|
end
|
2782
2839
|
|
@@ -2793,6 +2850,7 @@ module Aws::CloudFormation
|
|
2793
2850
|
#
|
2794
2851
|
class DetectStackDriftOutput < Struct.new(
|
2795
2852
|
:stack_drift_detection_id)
|
2853
|
+
SENSITIVE = []
|
2796
2854
|
include Aws::Structure
|
2797
2855
|
end
|
2798
2856
|
|
@@ -2818,6 +2876,7 @@ module Aws::CloudFormation
|
|
2818
2876
|
class DetectStackResourceDriftInput < Struct.new(
|
2819
2877
|
:stack_name,
|
2820
2878
|
:logical_resource_id)
|
2879
|
+
SENSITIVE = []
|
2821
2880
|
include Aws::Structure
|
2822
2881
|
end
|
2823
2882
|
|
@@ -2831,6 +2890,7 @@ module Aws::CloudFormation
|
|
2831
2890
|
#
|
2832
2891
|
class DetectStackResourceDriftOutput < Struct.new(
|
2833
2892
|
:stack_resource_drift)
|
2893
|
+
SENSITIVE = []
|
2834
2894
|
include Aws::Structure
|
2835
2895
|
end
|
2836
2896
|
|
@@ -2879,6 +2939,7 @@ module Aws::CloudFormation
|
|
2879
2939
|
:stack_set_name,
|
2880
2940
|
:operation_preferences,
|
2881
2941
|
:operation_id)
|
2942
|
+
SENSITIVE = []
|
2882
2943
|
include Aws::Structure
|
2883
2944
|
end
|
2884
2945
|
|
@@ -2893,6 +2954,7 @@ module Aws::CloudFormation
|
|
2893
2954
|
#
|
2894
2955
|
class DetectStackSetDriftOutput < Struct.new(
|
2895
2956
|
:operation_id)
|
2957
|
+
SENSITIVE = []
|
2896
2958
|
include Aws::Structure
|
2897
2959
|
end
|
2898
2960
|
|
@@ -2951,6 +3013,7 @@ module Aws::CloudFormation
|
|
2951
3013
|
:template_body,
|
2952
3014
|
:template_url,
|
2953
3015
|
:parameters)
|
3016
|
+
SENSITIVE = []
|
2954
3017
|
include Aws::Structure
|
2955
3018
|
end
|
2956
3019
|
|
@@ -2965,6 +3028,7 @@ module Aws::CloudFormation
|
|
2965
3028
|
#
|
2966
3029
|
class EstimateTemplateCostOutput < Struct.new(
|
2967
3030
|
:url)
|
3031
|
+
SENSITIVE = []
|
2968
3032
|
include Aws::Structure
|
2969
3033
|
end
|
2970
3034
|
|
@@ -3004,6 +3068,7 @@ module Aws::CloudFormation
|
|
3004
3068
|
:change_set_name,
|
3005
3069
|
:stack_name,
|
3006
3070
|
:client_request_token)
|
3071
|
+
SENSITIVE = []
|
3007
3072
|
include Aws::Structure
|
3008
3073
|
end
|
3009
3074
|
|
@@ -3039,6 +3104,7 @@ module Aws::CloudFormation
|
|
3039
3104
|
:exporting_stack_id,
|
3040
3105
|
:name,
|
3041
3106
|
:value)
|
3107
|
+
SENSITIVE = []
|
3042
3108
|
include Aws::Structure
|
3043
3109
|
end
|
3044
3110
|
|
@@ -3060,6 +3126,7 @@ module Aws::CloudFormation
|
|
3060
3126
|
#
|
3061
3127
|
class GetStackPolicyInput < Struct.new(
|
3062
3128
|
:stack_name)
|
3129
|
+
SENSITIVE = []
|
3063
3130
|
include Aws::Structure
|
3064
3131
|
end
|
3065
3132
|
|
@@ -3079,6 +3146,7 @@ module Aws::CloudFormation
|
|
3079
3146
|
#
|
3080
3147
|
class GetStackPolicyOutput < Struct.new(
|
3081
3148
|
:stack_policy_body)
|
3149
|
+
SENSITIVE = []
|
3082
3150
|
include Aws::Structure
|
3083
3151
|
end
|
3084
3152
|
|
@@ -3128,6 +3196,7 @@ module Aws::CloudFormation
|
|
3128
3196
|
:stack_name,
|
3129
3197
|
:change_set_name,
|
3130
3198
|
:template_stage)
|
3199
|
+
SENSITIVE = []
|
3131
3200
|
include Aws::Structure
|
3132
3201
|
end
|
3133
3202
|
|
@@ -3158,6 +3227,7 @@ module Aws::CloudFormation
|
|
3158
3227
|
class GetTemplateOutput < Struct.new(
|
3159
3228
|
:template_body,
|
3160
3229
|
:stages_available)
|
3230
|
+
SENSITIVE = []
|
3161
3231
|
include Aws::Structure
|
3162
3232
|
end
|
3163
3233
|
|
@@ -3226,6 +3296,7 @@ module Aws::CloudFormation
|
|
3226
3296
|
:template_url,
|
3227
3297
|
:stack_name,
|
3228
3298
|
:stack_set_name)
|
3299
|
+
SENSITIVE = []
|
3229
3300
|
include Aws::Structure
|
3230
3301
|
end
|
3231
3302
|
|
@@ -3301,6 +3372,7 @@ module Aws::CloudFormation
|
|
3301
3372
|
:metadata,
|
3302
3373
|
:declared_transforms,
|
3303
3374
|
:resource_identifier_summaries)
|
3375
|
+
SENSITIVE = []
|
3304
3376
|
include Aws::Structure
|
3305
3377
|
end
|
3306
3378
|
|
@@ -3374,6 +3446,7 @@ module Aws::CloudFormation
|
|
3374
3446
|
class ListChangeSetsInput < Struct.new(
|
3375
3447
|
:stack_name,
|
3376
3448
|
:next_token)
|
3449
|
+
SENSITIVE = []
|
3377
3450
|
include Aws::Structure
|
3378
3451
|
end
|
3379
3452
|
|
@@ -3394,6 +3467,7 @@ module Aws::CloudFormation
|
|
3394
3467
|
class ListChangeSetsOutput < Struct.new(
|
3395
3468
|
:summaries,
|
3396
3469
|
:next_token)
|
3470
|
+
SENSITIVE = []
|
3397
3471
|
include Aws::Structure
|
3398
3472
|
end
|
3399
3473
|
|
@@ -3414,6 +3488,7 @@ module Aws::CloudFormation
|
|
3414
3488
|
#
|
3415
3489
|
class ListExportsInput < Struct.new(
|
3416
3490
|
:next_token)
|
3491
|
+
SENSITIVE = []
|
3417
3492
|
include Aws::Structure
|
3418
3493
|
end
|
3419
3494
|
|
@@ -3432,6 +3507,7 @@ module Aws::CloudFormation
|
|
3432
3507
|
class ListExportsOutput < Struct.new(
|
3433
3508
|
:exports,
|
3434
3509
|
:next_token)
|
3510
|
+
SENSITIVE = []
|
3435
3511
|
include Aws::Structure
|
3436
3512
|
end
|
3437
3513
|
|
@@ -3459,6 +3535,7 @@ module Aws::CloudFormation
|
|
3459
3535
|
class ListImportsInput < Struct.new(
|
3460
3536
|
:export_name,
|
3461
3537
|
:next_token)
|
3538
|
+
SENSITIVE = []
|
3462
3539
|
include Aws::Structure
|
3463
3540
|
end
|
3464
3541
|
|
@@ -3477,6 +3554,7 @@ module Aws::CloudFormation
|
|
3477
3554
|
class ListImportsOutput < Struct.new(
|
3478
3555
|
:imports,
|
3479
3556
|
:next_token)
|
3557
|
+
SENSITIVE = []
|
3480
3558
|
include Aws::Structure
|
3481
3559
|
end
|
3482
3560
|
|
@@ -3529,6 +3607,7 @@ module Aws::CloudFormation
|
|
3529
3607
|
:max_results,
|
3530
3608
|
:stack_instance_account,
|
3531
3609
|
:stack_instance_region)
|
3610
|
+
SENSITIVE = []
|
3532
3611
|
include Aws::Structure
|
3533
3612
|
end
|
3534
3613
|
|
@@ -3550,6 +3629,7 @@ module Aws::CloudFormation
|
|
3550
3629
|
class ListStackInstancesOutput < Struct.new(
|
3551
3630
|
:summaries,
|
3552
3631
|
:next_token)
|
3632
|
+
SENSITIVE = []
|
3553
3633
|
include Aws::Structure
|
3554
3634
|
end
|
3555
3635
|
|
@@ -3585,6 +3665,7 @@ module Aws::CloudFormation
|
|
3585
3665
|
class ListStackResourcesInput < Struct.new(
|
3586
3666
|
:stack_name,
|
3587
3667
|
:next_token)
|
3668
|
+
SENSITIVE = []
|
3588
3669
|
include Aws::Structure
|
3589
3670
|
end
|
3590
3671
|
|
@@ -3605,6 +3686,7 @@ module Aws::CloudFormation
|
|
3605
3686
|
class ListStackResourcesOutput < Struct.new(
|
3606
3687
|
:stack_resource_summaries,
|
3607
3688
|
:next_token)
|
3689
|
+
SENSITIVE = []
|
3608
3690
|
include Aws::Structure
|
3609
3691
|
end
|
3610
3692
|
|
@@ -3651,6 +3733,7 @@ module Aws::CloudFormation
|
|
3651
3733
|
:operation_id,
|
3652
3734
|
:next_token,
|
3653
3735
|
:max_results)
|
3736
|
+
SENSITIVE = []
|
3654
3737
|
include Aws::Structure
|
3655
3738
|
end
|
3656
3739
|
|
@@ -3673,6 +3756,7 @@ module Aws::CloudFormation
|
|
3673
3756
|
class ListStackSetOperationResultsOutput < Struct.new(
|
3674
3757
|
:summaries,
|
3675
3758
|
:next_token)
|
3759
|
+
SENSITIVE = []
|
3676
3760
|
include Aws::Structure
|
3677
3761
|
end
|
3678
3762
|
|
@@ -3713,6 +3797,7 @@ module Aws::CloudFormation
|
|
3713
3797
|
:stack_set_name,
|
3714
3798
|
:next_token,
|
3715
3799
|
:max_results)
|
3800
|
+
SENSITIVE = []
|
3716
3801
|
include Aws::Structure
|
3717
3802
|
end
|
3718
3803
|
|
@@ -3734,6 +3819,7 @@ module Aws::CloudFormation
|
|
3734
3819
|
class ListStackSetOperationsOutput < Struct.new(
|
3735
3820
|
:summaries,
|
3736
3821
|
:next_token)
|
3822
|
+
SENSITIVE = []
|
3737
3823
|
include Aws::Structure
|
3738
3824
|
end
|
3739
3825
|
|
@@ -3773,6 +3859,7 @@ module Aws::CloudFormation
|
|
3773
3859
|
:next_token,
|
3774
3860
|
:max_results,
|
3775
3861
|
:status)
|
3862
|
+
SENSITIVE = []
|
3776
3863
|
include Aws::Structure
|
3777
3864
|
end
|
3778
3865
|
|
@@ -3794,6 +3881,7 @@ module Aws::CloudFormation
|
|
3794
3881
|
class ListStackSetsOutput < Struct.new(
|
3795
3882
|
:summaries,
|
3796
3883
|
:next_token)
|
3884
|
+
SENSITIVE = []
|
3797
3885
|
include Aws::Structure
|
3798
3886
|
end
|
3799
3887
|
|
@@ -3824,6 +3912,7 @@ module Aws::CloudFormation
|
|
3824
3912
|
class ListStacksInput < Struct.new(
|
3825
3913
|
:next_token,
|
3826
3914
|
:stack_status_filter)
|
3915
|
+
SENSITIVE = []
|
3827
3916
|
include Aws::Structure
|
3828
3917
|
end
|
3829
3918
|
|
@@ -3845,6 +3934,7 @@ module Aws::CloudFormation
|
|
3845
3934
|
class ListStacksOutput < Struct.new(
|
3846
3935
|
:stack_summaries,
|
3847
3936
|
:next_token)
|
3937
|
+
SENSITIVE = []
|
3848
3938
|
include Aws::Structure
|
3849
3939
|
end
|
3850
3940
|
|
@@ -3914,6 +4004,7 @@ module Aws::CloudFormation
|
|
3914
4004
|
:registration_status_filter,
|
3915
4005
|
:max_results,
|
3916
4006
|
:next_token)
|
4007
|
+
SENSITIVE = []
|
3917
4008
|
include Aws::Structure
|
3918
4009
|
end
|
3919
4010
|
|
@@ -3937,6 +4028,7 @@ module Aws::CloudFormation
|
|
3937
4028
|
class ListTypeRegistrationsOutput < Struct.new(
|
3938
4029
|
:registration_token_list,
|
3939
4030
|
:next_token)
|
4031
|
+
SENSITIVE = []
|
3940
4032
|
include Aws::Structure
|
3941
4033
|
end
|
3942
4034
|
|
@@ -4017,6 +4109,7 @@ module Aws::CloudFormation
|
|
4017
4109
|
:max_results,
|
4018
4110
|
:next_token,
|
4019
4111
|
:deprecated_status)
|
4112
|
+
SENSITIVE = []
|
4020
4113
|
include Aws::Structure
|
4021
4114
|
end
|
4022
4115
|
|
@@ -4038,6 +4131,7 @@ module Aws::CloudFormation
|
|
4038
4131
|
class ListTypeVersionsOutput < Struct.new(
|
4039
4132
|
:type_version_summaries,
|
4040
4133
|
:next_token)
|
4134
|
+
SENSITIVE = []
|
4041
4135
|
include Aws::Structure
|
4042
4136
|
end
|
4043
4137
|
|
@@ -4123,6 +4217,7 @@ module Aws::CloudFormation
|
|
4123
4217
|
:deprecated_status,
|
4124
4218
|
:max_results,
|
4125
4219
|
:next_token)
|
4220
|
+
SENSITIVE = []
|
4126
4221
|
include Aws::Structure
|
4127
4222
|
end
|
4128
4223
|
|
@@ -4144,6 +4239,7 @@ module Aws::CloudFormation
|
|
4144
4239
|
class ListTypesOutput < Struct.new(
|
4145
4240
|
:type_summaries,
|
4146
4241
|
:next_token)
|
4242
|
+
SENSITIVE = []
|
4147
4243
|
include Aws::Structure
|
4148
4244
|
end
|
4149
4245
|
|
@@ -4172,6 +4268,7 @@ module Aws::CloudFormation
|
|
4172
4268
|
class LoggingConfig < Struct.new(
|
4173
4269
|
:log_role_arn,
|
4174
4270
|
:log_group_name)
|
4271
|
+
SENSITIVE = []
|
4175
4272
|
include Aws::Structure
|
4176
4273
|
end
|
4177
4274
|
|
@@ -4236,6 +4333,7 @@ module Aws::CloudFormation
|
|
4236
4333
|
:output_value,
|
4237
4334
|
:description,
|
4238
4335
|
:export_name)
|
4336
|
+
SENSITIVE = []
|
4239
4337
|
include Aws::Structure
|
4240
4338
|
end
|
4241
4339
|
|
@@ -4284,6 +4382,7 @@ module Aws::CloudFormation
|
|
4284
4382
|
:parameter_value,
|
4285
4383
|
:use_previous_value,
|
4286
4384
|
:resolved_value)
|
4385
|
+
SENSITIVE = []
|
4287
4386
|
include Aws::Structure
|
4288
4387
|
end
|
4289
4388
|
|
@@ -4300,6 +4399,7 @@ module Aws::CloudFormation
|
|
4300
4399
|
#
|
4301
4400
|
class ParameterConstraints < Struct.new(
|
4302
4401
|
:allowed_values)
|
4402
|
+
SENSITIVE = []
|
4303
4403
|
include Aws::Structure
|
4304
4404
|
end
|
4305
4405
|
|
@@ -4340,6 +4440,7 @@ module Aws::CloudFormation
|
|
4340
4440
|
:no_echo,
|
4341
4441
|
:description,
|
4342
4442
|
:parameter_constraints)
|
4443
|
+
SENSITIVE = []
|
4343
4444
|
include Aws::Structure
|
4344
4445
|
end
|
4345
4446
|
|
@@ -4362,6 +4463,7 @@ module Aws::CloudFormation
|
|
4362
4463
|
class PhysicalResourceIdContextKeyValuePair < Struct.new(
|
4363
4464
|
:key,
|
4364
4465
|
:value)
|
4466
|
+
SENSITIVE = []
|
4365
4467
|
include Aws::Structure
|
4366
4468
|
end
|
4367
4469
|
|
@@ -4410,6 +4512,7 @@ module Aws::CloudFormation
|
|
4410
4512
|
:expected_value,
|
4411
4513
|
:actual_value,
|
4412
4514
|
:difference_type)
|
4515
|
+
SENSITIVE = []
|
4413
4516
|
include Aws::Structure
|
4414
4517
|
end
|
4415
4518
|
|
@@ -4492,6 +4595,7 @@ module Aws::CloudFormation
|
|
4492
4595
|
:error_code,
|
4493
4596
|
:resource_model,
|
4494
4597
|
:client_request_token)
|
4598
|
+
SENSITIVE = []
|
4495
4599
|
include Aws::Structure
|
4496
4600
|
end
|
4497
4601
|
|
@@ -4572,14 +4676,17 @@ module Aws::CloudFormation
|
|
4572
4676
|
# @return [Types::LoggingConfig]
|
4573
4677
|
#
|
4574
4678
|
# @!attribute [rw] execution_role_arn
|
4575
|
-
# The Amazon Resource Name (ARN) of the IAM
|
4576
|
-
#
|
4577
|
-
# its handlers, you must create an <i> <a
|
4679
|
+
# The Amazon Resource Name (ARN) of the IAM role for CloudFormation to
|
4680
|
+
# assume when invoking the resource provider. If your resource type
|
4681
|
+
# calls AWS APIs in any of its handlers, you must create an <i> <a
|
4578
4682
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
4579
4683
|
# execution role</a> </i> that includes the necessary permissions to
|
4580
4684
|
# call those AWS APIs, and provision that execution role in your
|
4581
|
-
# account. CloudFormation
|
4582
|
-
#
|
4685
|
+
# account. When CloudFormation needs to invoke the resource provider
|
4686
|
+
# handler, CloudFormation assumes this execution role to create a
|
4687
|
+
# temporary session token, which it then passes to the resource
|
4688
|
+
# provider handler, thereby supplying your resource provider with the
|
4689
|
+
# appropriate credentials.
|
4583
4690
|
# @return [String]
|
4584
4691
|
#
|
4585
4692
|
# @!attribute [rw] client_request_token
|
@@ -4599,6 +4706,7 @@ module Aws::CloudFormation
|
|
4599
4706
|
:logging_config,
|
4600
4707
|
:execution_role_arn,
|
4601
4708
|
:client_request_token)
|
4709
|
+
SENSITIVE = []
|
4602
4710
|
include Aws::Structure
|
4603
4711
|
end
|
4604
4712
|
|
@@ -4614,6 +4722,7 @@ module Aws::CloudFormation
|
|
4614
4722
|
#
|
4615
4723
|
class RegisterTypeOutput < Struct.new(
|
4616
4724
|
:registration_token)
|
4725
|
+
SENSITIVE = []
|
4617
4726
|
include Aws::Structure
|
4618
4727
|
end
|
4619
4728
|
|
@@ -4679,6 +4788,7 @@ module Aws::CloudFormation
|
|
4679
4788
|
:replacement,
|
4680
4789
|
:scope,
|
4681
4790
|
:details)
|
4791
|
+
SENSITIVE = []
|
4682
4792
|
include Aws::Structure
|
4683
4793
|
end
|
4684
4794
|
|
@@ -4759,6 +4869,7 @@ module Aws::CloudFormation
|
|
4759
4869
|
:evaluation,
|
4760
4870
|
:change_source,
|
4761
4871
|
:causing_entity)
|
4872
|
+
SENSITIVE = []
|
4762
4873
|
include Aws::Structure
|
4763
4874
|
end
|
4764
4875
|
|
@@ -4789,6 +4900,7 @@ module Aws::CloudFormation
|
|
4789
4900
|
:resource_type,
|
4790
4901
|
:logical_resource_ids,
|
4791
4902
|
:resource_identifiers)
|
4903
|
+
SENSITIVE = []
|
4792
4904
|
include Aws::Structure
|
4793
4905
|
end
|
4794
4906
|
|
@@ -4824,6 +4936,7 @@ module Aws::CloudFormation
|
|
4824
4936
|
:attribute,
|
4825
4937
|
:name,
|
4826
4938
|
:requires_recreation)
|
4939
|
+
SENSITIVE = []
|
4827
4940
|
include Aws::Structure
|
4828
4941
|
end
|
4829
4942
|
|
@@ -4862,6 +4975,7 @@ module Aws::CloudFormation
|
|
4862
4975
|
:resource_type,
|
4863
4976
|
:logical_resource_id,
|
4864
4977
|
:resource_identifier)
|
4978
|
+
SENSITIVE = []
|
4865
4979
|
include Aws::Structure
|
4866
4980
|
end
|
4867
4981
|
|
@@ -4947,6 +5061,7 @@ module Aws::CloudFormation
|
|
4947
5061
|
class RollbackConfiguration < Struct.new(
|
4948
5062
|
:rollback_triggers,
|
4949
5063
|
:monitoring_time_in_minutes)
|
5064
|
+
SENSITIVE = []
|
4950
5065
|
include Aws::Structure
|
4951
5066
|
end
|
4952
5067
|
|
@@ -4985,6 +5100,7 @@ module Aws::CloudFormation
|
|
4985
5100
|
class RollbackTrigger < Struct.new(
|
4986
5101
|
:arn,
|
4987
5102
|
:type)
|
5103
|
+
SENSITIVE = []
|
4988
5104
|
include Aws::Structure
|
4989
5105
|
end
|
4990
5106
|
|
@@ -5028,6 +5144,7 @@ module Aws::CloudFormation
|
|
5028
5144
|
:stack_name,
|
5029
5145
|
:stack_policy_body,
|
5030
5146
|
:stack_policy_url)
|
5147
|
+
SENSITIVE = []
|
5031
5148
|
include Aws::Structure
|
5032
5149
|
end
|
5033
5150
|
|
@@ -5076,6 +5193,7 @@ module Aws::CloudFormation
|
|
5076
5193
|
:type,
|
5077
5194
|
:type_name,
|
5078
5195
|
:version_id)
|
5196
|
+
SENSITIVE = []
|
5079
5197
|
include Aws::Structure
|
5080
5198
|
end
|
5081
5199
|
|
@@ -5126,6 +5244,7 @@ module Aws::CloudFormation
|
|
5126
5244
|
:logical_resource_id,
|
5127
5245
|
:unique_id,
|
5128
5246
|
:status)
|
5247
|
+
SENSITIVE = []
|
5129
5248
|
include Aws::Structure
|
5130
5249
|
end
|
5131
5250
|
|
@@ -5291,6 +5410,7 @@ module Aws::CloudFormation
|
|
5291
5410
|
:parent_id,
|
5292
5411
|
:root_id,
|
5293
5412
|
:drift_information)
|
5413
|
+
SENSITIVE = []
|
5294
5414
|
include Aws::Structure
|
5295
5415
|
end
|
5296
5416
|
|
@@ -5328,6 +5448,7 @@ module Aws::CloudFormation
|
|
5328
5448
|
class StackDriftInformation < Struct.new(
|
5329
5449
|
:stack_drift_status,
|
5330
5450
|
:last_check_timestamp)
|
5451
|
+
SENSITIVE = []
|
5331
5452
|
include Aws::Structure
|
5332
5453
|
end
|
5333
5454
|
|
@@ -5365,6 +5486,7 @@ module Aws::CloudFormation
|
|
5365
5486
|
class StackDriftInformationSummary < Struct.new(
|
5366
5487
|
:stack_drift_status,
|
5367
5488
|
:last_check_timestamp)
|
5489
|
+
SENSITIVE = []
|
5368
5490
|
include Aws::Structure
|
5369
5491
|
end
|
5370
5492
|
|
@@ -5448,6 +5570,7 @@ module Aws::CloudFormation
|
|
5448
5570
|
:resource_status_reason,
|
5449
5571
|
:resource_properties,
|
5450
5572
|
:client_request_token)
|
5573
|
+
SENSITIVE = []
|
5451
5574
|
include Aws::Structure
|
5452
5575
|
end
|
5453
5576
|
|
@@ -5514,7 +5637,13 @@ module Aws::CloudFormation
|
|
5514
5637
|
# @return [String]
|
5515
5638
|
#
|
5516
5639
|
# @!attribute [rw] organizational_unit_id
|
5517
|
-
#
|
5640
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
5641
|
+
# organizational unit (OU) IDs that you specified for
|
5642
|
+
# [DeploymentTargets][1].
|
5643
|
+
#
|
5644
|
+
#
|
5645
|
+
#
|
5646
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
5518
5647
|
# @return [String]
|
5519
5648
|
#
|
5520
5649
|
# @!attribute [rw] drift_status
|
@@ -5555,6 +5684,7 @@ module Aws::CloudFormation
|
|
5555
5684
|
:organizational_unit_id,
|
5556
5685
|
:drift_status,
|
5557
5686
|
:last_drift_check_timestamp)
|
5687
|
+
SENSITIVE = []
|
5558
5688
|
include Aws::Structure
|
5559
5689
|
end
|
5560
5690
|
|
@@ -5616,7 +5746,13 @@ module Aws::CloudFormation
|
|
5616
5746
|
# @return [String]
|
5617
5747
|
#
|
5618
5748
|
# @!attribute [rw] organizational_unit_id
|
5619
|
-
#
|
5749
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
5750
|
+
# organizational unit (OU) IDs that you specified for
|
5751
|
+
# [DeploymentTargets][1].
|
5752
|
+
#
|
5753
|
+
#
|
5754
|
+
#
|
5755
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
5620
5756
|
# @return [String]
|
5621
5757
|
#
|
5622
5758
|
# @!attribute [rw] drift_status
|
@@ -5656,6 +5792,7 @@ module Aws::CloudFormation
|
|
5656
5792
|
:organizational_unit_id,
|
5657
5793
|
:drift_status,
|
5658
5794
|
:last_drift_check_timestamp)
|
5795
|
+
SENSITIVE = []
|
5659
5796
|
include Aws::Structure
|
5660
5797
|
end
|
5661
5798
|
|
@@ -5728,6 +5865,7 @@ module Aws::CloudFormation
|
|
5728
5865
|
:resource_status_reason,
|
5729
5866
|
:description,
|
5730
5867
|
:drift_information)
|
5868
|
+
SENSITIVE = []
|
5731
5869
|
include Aws::Structure
|
5732
5870
|
end
|
5733
5871
|
|
@@ -5811,6 +5949,7 @@ module Aws::CloudFormation
|
|
5811
5949
|
:description,
|
5812
5950
|
:metadata,
|
5813
5951
|
:drift_information)
|
5952
|
+
SENSITIVE = []
|
5814
5953
|
include Aws::Structure
|
5815
5954
|
end
|
5816
5955
|
|
@@ -5918,6 +6057,7 @@ module Aws::CloudFormation
|
|
5918
6057
|
:property_differences,
|
5919
6058
|
:stack_resource_drift_status,
|
5920
6059
|
:timestamp)
|
6060
|
+
SENSITIVE = []
|
5921
6061
|
include Aws::Structure
|
5922
6062
|
end
|
5923
6063
|
|
@@ -5959,6 +6099,7 @@ module Aws::CloudFormation
|
|
5959
6099
|
class StackResourceDriftInformation < Struct.new(
|
5960
6100
|
:stack_resource_drift_status,
|
5961
6101
|
:last_check_timestamp)
|
6102
|
+
SENSITIVE = []
|
5962
6103
|
include Aws::Structure
|
5963
6104
|
end
|
5964
6105
|
|
@@ -6006,6 +6147,7 @@ module Aws::CloudFormation
|
|
6006
6147
|
class StackResourceDriftInformationSummary < Struct.new(
|
6007
6148
|
:stack_resource_drift_status,
|
6008
6149
|
:last_check_timestamp)
|
6150
|
+
SENSITIVE = []
|
6009
6151
|
include Aws::Structure
|
6010
6152
|
end
|
6011
6153
|
|
@@ -6063,6 +6205,7 @@ module Aws::CloudFormation
|
|
6063
6205
|
:resource_status,
|
6064
6206
|
:resource_status_reason,
|
6065
6207
|
:drift_information)
|
6208
|
+
SENSITIVE = []
|
6066
6209
|
include Aws::Structure
|
6067
6210
|
end
|
6068
6211
|
|
@@ -6177,7 +6320,13 @@ module Aws::CloudFormation
|
|
6177
6320
|
# @return [String]
|
6178
6321
|
#
|
6179
6322
|
# @!attribute [rw] organizational_unit_ids
|
6180
|
-
#
|
6323
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
6324
|
+
# organizational unit (OU) IDs that you specified for
|
6325
|
+
# [DeploymentTargets][1].
|
6326
|
+
#
|
6327
|
+
#
|
6328
|
+
#
|
6329
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
6181
6330
|
# @return [Array<String>]
|
6182
6331
|
#
|
6183
6332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
@@ -6198,6 +6347,7 @@ module Aws::CloudFormation
|
|
6198
6347
|
:auto_deployment,
|
6199
6348
|
:permission_model,
|
6200
6349
|
:organizational_unit_ids)
|
6350
|
+
SENSITIVE = []
|
6201
6351
|
include Aws::Structure
|
6202
6352
|
end
|
6203
6353
|
|
@@ -6310,6 +6460,7 @@ module Aws::CloudFormation
|
|
6310
6460
|
:in_sync_stack_instances_count,
|
6311
6461
|
:in_progress_stack_instances_count,
|
6312
6462
|
:failed_stack_instances_count)
|
6463
|
+
SENSITIVE = []
|
6313
6464
|
include Aws::Structure
|
6314
6465
|
end
|
6315
6466
|
|
@@ -6465,6 +6616,7 @@ module Aws::CloudFormation
|
|
6465
6616
|
:end_timestamp,
|
6466
6617
|
:deployment_targets,
|
6467
6618
|
:stack_set_drift_detection_details)
|
6619
|
+
SENSITIVE = []
|
6468
6620
|
include Aws::Structure
|
6469
6621
|
end
|
6470
6622
|
|
@@ -6521,9 +6673,9 @@ module Aws::CloudFormation
|
|
6521
6673
|
#
|
6522
6674
|
# @!attribute [rw] max_concurrent_count
|
6523
6675
|
# The maximum number of accounts in which to perform this operation at
|
6524
|
-
# one time. This is dependent on the value of
|
6525
|
-
# `
|
6526
|
-
#
|
6676
|
+
# one time. This is dependent on the value of `FailureToleranceCount`.
|
6677
|
+
# `MaxConcurrentCount` is at most one more than the
|
6678
|
+
# `FailureToleranceCount`.
|
6527
6679
|
#
|
6528
6680
|
# Note that this setting lets you specify the *maximum* for
|
6529
6681
|
# operations. For large deployments, under certain circumstances the
|
@@ -6560,6 +6712,7 @@ module Aws::CloudFormation
|
|
6560
6712
|
:failure_tolerance_percentage,
|
6561
6713
|
:max_concurrent_count,
|
6562
6714
|
:max_concurrent_percentage)
|
6715
|
+
SENSITIVE = []
|
6563
6716
|
include Aws::Structure
|
6564
6717
|
end
|
6565
6718
|
|
@@ -6612,7 +6765,13 @@ module Aws::CloudFormation
|
|
6612
6765
|
# @return [Types::AccountGateResult]
|
6613
6766
|
#
|
6614
6767
|
# @!attribute [rw] organizational_unit_id
|
6615
|
-
#
|
6768
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
6769
|
+
# organizational unit (OU) IDs that you specified for
|
6770
|
+
# [DeploymentTargets][1].
|
6771
|
+
#
|
6772
|
+
#
|
6773
|
+
#
|
6774
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
6616
6775
|
# @return [String]
|
6617
6776
|
#
|
6618
6777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationResultSummary AWS API Documentation
|
@@ -6624,6 +6783,7 @@ module Aws::CloudFormation
|
|
6624
6783
|
:status_reason,
|
6625
6784
|
:account_gate_result,
|
6626
6785
|
:organizational_unit_id)
|
6786
|
+
SENSITIVE = []
|
6627
6787
|
include Aws::Structure
|
6628
6788
|
end
|
6629
6789
|
|
@@ -6700,6 +6860,7 @@ module Aws::CloudFormation
|
|
6700
6860
|
:status,
|
6701
6861
|
:creation_timestamp,
|
6702
6862
|
:end_timestamp)
|
6863
|
+
SENSITIVE = []
|
6703
6864
|
include Aws::Structure
|
6704
6865
|
end
|
6705
6866
|
|
@@ -6788,6 +6949,7 @@ module Aws::CloudFormation
|
|
6788
6949
|
:permission_model,
|
6789
6950
|
:drift_status,
|
6790
6951
|
:last_drift_check_timestamp)
|
6952
|
+
SENSITIVE = []
|
6791
6953
|
include Aws::Structure
|
6792
6954
|
end
|
6793
6955
|
|
@@ -6879,6 +7041,7 @@ module Aws::CloudFormation
|
|
6879
7041
|
:parent_id,
|
6880
7042
|
:root_id,
|
6881
7043
|
:drift_information)
|
7044
|
+
SENSITIVE = []
|
6882
7045
|
include Aws::Structure
|
6883
7046
|
end
|
6884
7047
|
|
@@ -6911,6 +7074,7 @@ module Aws::CloudFormation
|
|
6911
7074
|
class StopStackSetOperationInput < Struct.new(
|
6912
7075
|
:stack_set_name,
|
6913
7076
|
:operation_id)
|
7077
|
+
SENSITIVE = []
|
6914
7078
|
include Aws::Structure
|
6915
7079
|
end
|
6916
7080
|
|
@@ -6945,6 +7109,7 @@ module Aws::CloudFormation
|
|
6945
7109
|
class Tag < Struct.new(
|
6946
7110
|
:key,
|
6947
7111
|
:value)
|
7112
|
+
SENSITIVE = []
|
6948
7113
|
include Aws::Structure
|
6949
7114
|
end
|
6950
7115
|
|
@@ -6974,6 +7139,7 @@ module Aws::CloudFormation
|
|
6974
7139
|
:default_value,
|
6975
7140
|
:no_echo,
|
6976
7141
|
:description)
|
7142
|
+
SENSITIVE = []
|
6977
7143
|
include Aws::Structure
|
6978
7144
|
end
|
6979
7145
|
|
@@ -7027,6 +7193,7 @@ module Aws::CloudFormation
|
|
7027
7193
|
:type_arn,
|
7028
7194
|
:last_updated,
|
7029
7195
|
:description)
|
7196
|
+
SENSITIVE = []
|
7030
7197
|
include Aws::Structure
|
7031
7198
|
end
|
7032
7199
|
|
@@ -7047,6 +7214,10 @@ module Aws::CloudFormation
|
|
7047
7214
|
# type version when it is registered.
|
7048
7215
|
# @return [String]
|
7049
7216
|
#
|
7217
|
+
# @!attribute [rw] is_default_version
|
7218
|
+
# Whether the specified type version is set as the default version.
|
7219
|
+
# @return [Boolean]
|
7220
|
+
#
|
7050
7221
|
# @!attribute [rw] arn
|
7051
7222
|
# The Amazon Resource Name (ARN) of the type version.
|
7052
7223
|
# @return [String]
|
@@ -7065,9 +7236,11 @@ module Aws::CloudFormation
|
|
7065
7236
|
:type,
|
7066
7237
|
:type_name,
|
7067
7238
|
:version_id,
|
7239
|
+
:is_default_version,
|
7068
7240
|
:arn,
|
7069
7241
|
:time_created,
|
7070
7242
|
:description)
|
7243
|
+
SENSITIVE = []
|
7071
7244
|
include Aws::Structure
|
7072
7245
|
end
|
7073
7246
|
|
@@ -7401,6 +7574,7 @@ module Aws::CloudFormation
|
|
7401
7574
|
:notification_arns,
|
7402
7575
|
:tags,
|
7403
7576
|
:client_request_token)
|
7577
|
+
SENSITIVE = []
|
7404
7578
|
include Aws::Structure
|
7405
7579
|
end
|
7406
7580
|
|
@@ -7542,6 +7716,7 @@ module Aws::CloudFormation
|
|
7542
7716
|
:parameter_overrides,
|
7543
7717
|
:operation_preferences,
|
7544
7718
|
:operation_id)
|
7719
|
+
SENSITIVE = []
|
7545
7720
|
include Aws::Structure
|
7546
7721
|
end
|
7547
7722
|
|
@@ -7553,6 +7728,7 @@ module Aws::CloudFormation
|
|
7553
7728
|
#
|
7554
7729
|
class UpdateStackInstancesOutput < Struct.new(
|
7555
7730
|
:operation_id)
|
7731
|
+
SENSITIVE = []
|
7556
7732
|
include Aws::Structure
|
7557
7733
|
end
|
7558
7734
|
|
@@ -7566,6 +7742,7 @@ module Aws::CloudFormation
|
|
7566
7742
|
#
|
7567
7743
|
class UpdateStackOutput < Struct.new(
|
7568
7744
|
:stack_id)
|
7745
|
+
SENSITIVE = []
|
7569
7746
|
include Aws::Structure
|
7570
7747
|
end
|
7571
7748
|
|
@@ -7945,6 +8122,7 @@ module Aws::CloudFormation
|
|
7945
8122
|
:operation_id,
|
7946
8123
|
:accounts,
|
7947
8124
|
:regions)
|
8125
|
+
SENSITIVE = []
|
7948
8126
|
include Aws::Structure
|
7949
8127
|
end
|
7950
8128
|
|
@@ -7956,6 +8134,7 @@ module Aws::CloudFormation
|
|
7956
8134
|
#
|
7957
8135
|
class UpdateStackSetOutput < Struct.new(
|
7958
8136
|
:operation_id)
|
8137
|
+
SENSITIVE = []
|
7959
8138
|
include Aws::Structure
|
7960
8139
|
end
|
7961
8140
|
|
@@ -7981,6 +8160,7 @@ module Aws::CloudFormation
|
|
7981
8160
|
class UpdateTerminationProtectionInput < Struct.new(
|
7982
8161
|
:enable_termination_protection,
|
7983
8162
|
:stack_name)
|
8163
|
+
SENSITIVE = []
|
7984
8164
|
include Aws::Structure
|
7985
8165
|
end
|
7986
8166
|
|
@@ -7992,6 +8172,7 @@ module Aws::CloudFormation
|
|
7992
8172
|
#
|
7993
8173
|
class UpdateTerminationProtectionOutput < Struct.new(
|
7994
8174
|
:stack_id)
|
8175
|
+
SENSITIVE = []
|
7995
8176
|
include Aws::Structure
|
7996
8177
|
end
|
7997
8178
|
|
@@ -8037,6 +8218,7 @@ module Aws::CloudFormation
|
|
8037
8218
|
class ValidateTemplateInput < Struct.new(
|
8038
8219
|
:template_body,
|
8039
8220
|
:template_url)
|
8221
|
+
SENSITIVE = []
|
8040
8222
|
include Aws::Structure
|
8041
8223
|
end
|
8042
8224
|
|
@@ -8082,6 +8264,7 @@ module Aws::CloudFormation
|
|
8082
8264
|
:capabilities,
|
8083
8265
|
:capabilities_reason,
|
8084
8266
|
:declared_transforms)
|
8267
|
+
SENSITIVE = []
|
8085
8268
|
include Aws::Structure
|
8086
8269
|
end
|
8087
8270
|
|