aws-sdk-cloudformation 1.37.1 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-cloudformation.rb +4 -2
- data/lib/aws-sdk-cloudformation/client.rb +46 -14
- data/lib/aws-sdk-cloudformation/client_api.rb +20 -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 +2 -0
- 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 +278 -13
- data/lib/aws-sdk-cloudformation/waiters.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c6c61f954476db563219c23f112b3de30ac12bdd12565bb61f71b9d055d9493
|
4
|
+
data.tar.gz: 2d31512f0643889e545e9ebce45d590650aeca24610ae05d58eb50e316f854b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f864136575f551695aeb302d494ba3857460a53029b649232ff258f1c0f4c7f950c76f7da7ba7481830c0d6c344c069150d00b6674f28593d258453db1ee11d5
|
7
|
+
data.tar.gz: 9997605a2121517ed7201e3adbef7cd24ca2ea883aff0e55d3e4c6c60c8610909a1cd93c99de8369c06046b832a2bb50ddd4f79e6e91fcfb98ca9b703262f806
|
@@ -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:
|
@@ -47,9 +49,9 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
47
49
|
#
|
48
50
|
# See {Errors} for more information.
|
49
51
|
#
|
50
|
-
#
|
52
|
+
# @!group service
|
51
53
|
module Aws::CloudFormation
|
52
54
|
|
53
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.42.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:
|
@@ -83,13 +85,28 @@ module Aws::CloudFormation
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::CloudFormation
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -2045,6 +2062,7 @@ module Aws::CloudFormation
|
|
2045
2062
|
# resp.stack_instance.parameter_overrides[0].use_previous_value #=> Boolean
|
2046
2063
|
# resp.stack_instance.parameter_overrides[0].resolved_value #=> String
|
2047
2064
|
# resp.stack_instance.status #=> String, one of "CURRENT", "OUTDATED", "INOPERABLE"
|
2065
|
+
# resp.stack_instance.stack_instance_status.detailed_status #=> String, one of "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELLED", "INOPERABLE"
|
2048
2066
|
# resp.stack_instance.status_reason #=> String
|
2049
2067
|
# resp.stack_instance.organizational_unit_id #=> String
|
2050
2068
|
# resp.stack_instance.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
@@ -3356,7 +3374,8 @@ module Aws::CloudFormation
|
|
3356
3374
|
|
3357
3375
|
# Returns summary information about stack instances that are associated
|
3358
3376
|
# with the specified stack set. You can filter for stack instances that
|
3359
|
-
# are associated with a specific AWS account name or Region
|
3377
|
+
# are associated with a specific AWS account name or Region, or that
|
3378
|
+
# have a specific status.
|
3360
3379
|
#
|
3361
3380
|
# @option params [required, String] :stack_set_name
|
3362
3381
|
# The name or unique ID of the stack set that you want to list stack
|
@@ -3376,6 +3395,9 @@ module Aws::CloudFormation
|
|
3376
3395
|
# includes a `NextToken` value that you can assign to the `NextToken`
|
3377
3396
|
# request parameter to get the next set of results.
|
3378
3397
|
#
|
3398
|
+
# @option params [Array<Types::StackInstanceFilter>] :filters
|
3399
|
+
# The status that stack instances are filtered by.
|
3400
|
+
#
|
3379
3401
|
# @option params [String] :stack_instance_account
|
3380
3402
|
# The name of the AWS account that you want to list stack instances for.
|
3381
3403
|
#
|
@@ -3395,6 +3417,12 @@ module Aws::CloudFormation
|
|
3395
3417
|
# stack_set_name: "StackSetName", # required
|
3396
3418
|
# next_token: "NextToken",
|
3397
3419
|
# max_results: 1,
|
3420
|
+
# filters: [
|
3421
|
+
# {
|
3422
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
3423
|
+
# values: "StackInstanceFilterValues",
|
3424
|
+
# },
|
3425
|
+
# ],
|
3398
3426
|
# stack_instance_account: "Account",
|
3399
3427
|
# stack_instance_region: "Region",
|
3400
3428
|
# })
|
@@ -3408,6 +3436,7 @@ module Aws::CloudFormation
|
|
3408
3436
|
# resp.summaries[0].stack_id #=> String
|
3409
3437
|
# resp.summaries[0].status #=> String, one of "CURRENT", "OUTDATED", "INOPERABLE"
|
3410
3438
|
# resp.summaries[0].status_reason #=> String
|
3439
|
+
# resp.summaries[0].stack_instance_status.detailed_status #=> String, one of "PENDING", "RUNNING", "SUCCEEDED", "FAILED", "CANCELLED", "INOPERABLE"
|
3411
3440
|
# resp.summaries[0].organizational_unit_id #=> String
|
3412
3441
|
# resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
|
3413
3442
|
# resp.summaries[0].last_drift_check_timestamp #=> Time
|
@@ -4130,14 +4159,17 @@ module Aws::CloudFormation
|
|
4130
4159
|
# Specifies logging configuration information for a type.
|
4131
4160
|
#
|
4132
4161
|
# @option params [String] :execution_role_arn
|
4133
|
-
# The Amazon Resource Name (ARN) of the IAM
|
4134
|
-
#
|
4135
|
-
# handlers, you must create an <i> <a
|
4162
|
+
# The Amazon Resource Name (ARN) of the IAM role for CloudFormation to
|
4163
|
+
# assume when invoking the resource provider. If your resource type
|
4164
|
+
# calls AWS APIs in any of its handlers, you must create an <i> <a
|
4136
4165
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
4137
4166
|
# execution role</a> </i> that includes the necessary permissions to
|
4138
4167
|
# call those AWS APIs, and provision that execution role in your
|
4139
|
-
# account. CloudFormation
|
4140
|
-
#
|
4168
|
+
# account. When CloudFormation needs to invoke the resource provider
|
4169
|
+
# handler, CloudFormation assumes this execution role to create a
|
4170
|
+
# temporary session token, which it then passes to the resource provider
|
4171
|
+
# handler, thereby supplying your resource provider with the appropriate
|
4172
|
+
# credentials.
|
4141
4173
|
#
|
4142
4174
|
# @option params [String] :client_request_token
|
4143
4175
|
# A unique identifier that acts as an idempotency key for this
|
@@ -5300,7 +5332,7 @@ module Aws::CloudFormation
|
|
5300
5332
|
params: params,
|
5301
5333
|
config: config)
|
5302
5334
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5303
|
-
context[:gem_version] = '1.
|
5335
|
+
context[:gem_version] = '1.42.0'
|
5304
5336
|
Seahorse::Client::Request.new(handlers, context)
|
5305
5337
|
end
|
5306
5338
|
|
@@ -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:
|
@@ -279,6 +281,12 @@ module Aws::CloudFormation
|
|
279
281
|
StackEvents = Shapes::ListShape.new(name: 'StackEvents')
|
280
282
|
StackId = Shapes::StringShape.new(name: 'StackId')
|
281
283
|
StackInstance = Shapes::StructureShape.new(name: 'StackInstance')
|
284
|
+
StackInstanceComprehensiveStatus = Shapes::StructureShape.new(name: 'StackInstanceComprehensiveStatus')
|
285
|
+
StackInstanceDetailedStatus = Shapes::StringShape.new(name: 'StackInstanceDetailedStatus')
|
286
|
+
StackInstanceFilter = Shapes::StructureShape.new(name: 'StackInstanceFilter')
|
287
|
+
StackInstanceFilterName = Shapes::StringShape.new(name: 'StackInstanceFilterName')
|
288
|
+
StackInstanceFilterValues = Shapes::StringShape.new(name: 'StackInstanceFilterValues')
|
289
|
+
StackInstanceFilters = Shapes::ListShape.new(name: 'StackInstanceFilters')
|
282
290
|
StackInstanceNotFoundException = Shapes::StructureShape.new(name: 'StackInstanceNotFoundException')
|
283
291
|
StackInstanceStatus = Shapes::StringShape.new(name: 'StackInstanceStatus')
|
284
292
|
StackInstanceSummaries = Shapes::ListShape.new(name: 'StackInstanceSummaries')
|
@@ -801,6 +809,7 @@ module Aws::CloudFormation
|
|
801
809
|
ListStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
802
810
|
ListStackInstancesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
803
811
|
ListStackInstancesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
812
|
+
ListStackInstancesInput.add_member(:filters, Shapes::ShapeRef.new(shape: StackInstanceFilters, location_name: "Filters"))
|
804
813
|
ListStackInstancesInput.add_member(:stack_instance_account, Shapes::ShapeRef.new(shape: Account, location_name: "StackInstanceAccount"))
|
805
814
|
ListStackInstancesInput.add_member(:stack_instance_region, Shapes::ShapeRef.new(shape: Region, location_name: "StackInstanceRegion"))
|
806
815
|
ListStackInstancesInput.struct_class = Types::ListStackInstancesInput
|
@@ -1108,12 +1117,22 @@ module Aws::CloudFormation
|
|
1108
1117
|
StackInstance.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
|
1109
1118
|
StackInstance.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: Parameters, location_name: "ParameterOverrides"))
|
1110
1119
|
StackInstance.add_member(:status, Shapes::ShapeRef.new(shape: StackInstanceStatus, location_name: "Status"))
|
1120
|
+
StackInstance.add_member(:stack_instance_status, Shapes::ShapeRef.new(shape: StackInstanceComprehensiveStatus, location_name: "StackInstanceStatus"))
|
1111
1121
|
StackInstance.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
|
1112
1122
|
StackInstance.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1113
1123
|
StackInstance.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1114
1124
|
StackInstance.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
1115
1125
|
StackInstance.struct_class = Types::StackInstance
|
1116
1126
|
|
1127
|
+
StackInstanceComprehensiveStatus.add_member(:detailed_status, Shapes::ShapeRef.new(shape: StackInstanceDetailedStatus, location_name: "DetailedStatus"))
|
1128
|
+
StackInstanceComprehensiveStatus.struct_class = Types::StackInstanceComprehensiveStatus
|
1129
|
+
|
1130
|
+
StackInstanceFilter.add_member(:name, Shapes::ShapeRef.new(shape: StackInstanceFilterName, location_name: "Name"))
|
1131
|
+
StackInstanceFilter.add_member(:values, Shapes::ShapeRef.new(shape: StackInstanceFilterValues, location_name: "Values"))
|
1132
|
+
StackInstanceFilter.struct_class = Types::StackInstanceFilter
|
1133
|
+
|
1134
|
+
StackInstanceFilters.member = Shapes::ShapeRef.new(shape: StackInstanceFilter)
|
1135
|
+
|
1117
1136
|
StackInstanceNotFoundException.struct_class = Types::StackInstanceNotFoundException
|
1118
1137
|
|
1119
1138
|
StackInstanceSummaries.member = Shapes::ShapeRef.new(shape: StackInstanceSummary)
|
@@ -1124,6 +1143,7 @@ module Aws::CloudFormation
|
|
1124
1143
|
StackInstanceSummary.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "StackId"))
|
1125
1144
|
StackInstanceSummary.add_member(:status, Shapes::ShapeRef.new(shape: StackInstanceStatus, location_name: "Status"))
|
1126
1145
|
StackInstanceSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
|
1146
|
+
StackInstanceSummary.add_member(:stack_instance_status, Shapes::ShapeRef.new(shape: StackInstanceComprehensiveStatus, location_name: "StackInstanceStatus"))
|
1127
1147
|
StackInstanceSummary.add_member(:organizational_unit_id, Shapes::ShapeRef.new(shape: OrganizationalUnitId, location_name: "OrganizationalUnitId"))
|
1128
1148
|
StackInstanceSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
|
1129
1149
|
StackInstanceSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
|
@@ -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
|
|
@@ -2704,6 +2752,7 @@ module Aws::CloudFormation
|
|
2704
2752
|
:documentation_url,
|
2705
2753
|
:last_updated,
|
2706
2754
|
:time_created)
|
2755
|
+
SENSITIVE = []
|
2707
2756
|
include Aws::Structure
|
2708
2757
|
end
|
2709
2758
|
|
@@ -2725,6 +2774,7 @@ module Aws::CloudFormation
|
|
2725
2774
|
#
|
2726
2775
|
class DescribeTypeRegistrationInput < Struct.new(
|
2727
2776
|
:registration_token)
|
2777
|
+
SENSITIVE = []
|
2728
2778
|
include Aws::Structure
|
2729
2779
|
end
|
2730
2780
|
|
@@ -2758,6 +2808,7 @@ module Aws::CloudFormation
|
|
2758
2808
|
:description,
|
2759
2809
|
:type_arn,
|
2760
2810
|
:type_version_arn)
|
2811
|
+
SENSITIVE = []
|
2761
2812
|
include Aws::Structure
|
2762
2813
|
end
|
2763
2814
|
|
@@ -2782,6 +2833,7 @@ module Aws::CloudFormation
|
|
2782
2833
|
class DetectStackDriftInput < Struct.new(
|
2783
2834
|
:stack_name,
|
2784
2835
|
:logical_resource_ids)
|
2836
|
+
SENSITIVE = []
|
2785
2837
|
include Aws::Structure
|
2786
2838
|
end
|
2787
2839
|
|
@@ -2798,6 +2850,7 @@ module Aws::CloudFormation
|
|
2798
2850
|
#
|
2799
2851
|
class DetectStackDriftOutput < Struct.new(
|
2800
2852
|
:stack_drift_detection_id)
|
2853
|
+
SENSITIVE = []
|
2801
2854
|
include Aws::Structure
|
2802
2855
|
end
|
2803
2856
|
|
@@ -2823,6 +2876,7 @@ module Aws::CloudFormation
|
|
2823
2876
|
class DetectStackResourceDriftInput < Struct.new(
|
2824
2877
|
:stack_name,
|
2825
2878
|
:logical_resource_id)
|
2879
|
+
SENSITIVE = []
|
2826
2880
|
include Aws::Structure
|
2827
2881
|
end
|
2828
2882
|
|
@@ -2836,6 +2890,7 @@ module Aws::CloudFormation
|
|
2836
2890
|
#
|
2837
2891
|
class DetectStackResourceDriftOutput < Struct.new(
|
2838
2892
|
:stack_resource_drift)
|
2893
|
+
SENSITIVE = []
|
2839
2894
|
include Aws::Structure
|
2840
2895
|
end
|
2841
2896
|
|
@@ -2884,6 +2939,7 @@ module Aws::CloudFormation
|
|
2884
2939
|
:stack_set_name,
|
2885
2940
|
:operation_preferences,
|
2886
2941
|
:operation_id)
|
2942
|
+
SENSITIVE = []
|
2887
2943
|
include Aws::Structure
|
2888
2944
|
end
|
2889
2945
|
|
@@ -2898,6 +2954,7 @@ module Aws::CloudFormation
|
|
2898
2954
|
#
|
2899
2955
|
class DetectStackSetDriftOutput < Struct.new(
|
2900
2956
|
:operation_id)
|
2957
|
+
SENSITIVE = []
|
2901
2958
|
include Aws::Structure
|
2902
2959
|
end
|
2903
2960
|
|
@@ -2956,6 +3013,7 @@ module Aws::CloudFormation
|
|
2956
3013
|
:template_body,
|
2957
3014
|
:template_url,
|
2958
3015
|
:parameters)
|
3016
|
+
SENSITIVE = []
|
2959
3017
|
include Aws::Structure
|
2960
3018
|
end
|
2961
3019
|
|
@@ -2970,6 +3028,7 @@ module Aws::CloudFormation
|
|
2970
3028
|
#
|
2971
3029
|
class EstimateTemplateCostOutput < Struct.new(
|
2972
3030
|
:url)
|
3031
|
+
SENSITIVE = []
|
2973
3032
|
include Aws::Structure
|
2974
3033
|
end
|
2975
3034
|
|
@@ -3009,6 +3068,7 @@ module Aws::CloudFormation
|
|
3009
3068
|
:change_set_name,
|
3010
3069
|
:stack_name,
|
3011
3070
|
:client_request_token)
|
3071
|
+
SENSITIVE = []
|
3012
3072
|
include Aws::Structure
|
3013
3073
|
end
|
3014
3074
|
|
@@ -3044,6 +3104,7 @@ module Aws::CloudFormation
|
|
3044
3104
|
:exporting_stack_id,
|
3045
3105
|
:name,
|
3046
3106
|
:value)
|
3107
|
+
SENSITIVE = []
|
3047
3108
|
include Aws::Structure
|
3048
3109
|
end
|
3049
3110
|
|
@@ -3065,6 +3126,7 @@ module Aws::CloudFormation
|
|
3065
3126
|
#
|
3066
3127
|
class GetStackPolicyInput < Struct.new(
|
3067
3128
|
:stack_name)
|
3129
|
+
SENSITIVE = []
|
3068
3130
|
include Aws::Structure
|
3069
3131
|
end
|
3070
3132
|
|
@@ -3084,6 +3146,7 @@ module Aws::CloudFormation
|
|
3084
3146
|
#
|
3085
3147
|
class GetStackPolicyOutput < Struct.new(
|
3086
3148
|
:stack_policy_body)
|
3149
|
+
SENSITIVE = []
|
3087
3150
|
include Aws::Structure
|
3088
3151
|
end
|
3089
3152
|
|
@@ -3133,6 +3196,7 @@ module Aws::CloudFormation
|
|
3133
3196
|
:stack_name,
|
3134
3197
|
:change_set_name,
|
3135
3198
|
:template_stage)
|
3199
|
+
SENSITIVE = []
|
3136
3200
|
include Aws::Structure
|
3137
3201
|
end
|
3138
3202
|
|
@@ -3163,6 +3227,7 @@ module Aws::CloudFormation
|
|
3163
3227
|
class GetTemplateOutput < Struct.new(
|
3164
3228
|
:template_body,
|
3165
3229
|
:stages_available)
|
3230
|
+
SENSITIVE = []
|
3166
3231
|
include Aws::Structure
|
3167
3232
|
end
|
3168
3233
|
|
@@ -3231,6 +3296,7 @@ module Aws::CloudFormation
|
|
3231
3296
|
:template_url,
|
3232
3297
|
:stack_name,
|
3233
3298
|
:stack_set_name)
|
3299
|
+
SENSITIVE = []
|
3234
3300
|
include Aws::Structure
|
3235
3301
|
end
|
3236
3302
|
|
@@ -3306,6 +3372,7 @@ module Aws::CloudFormation
|
|
3306
3372
|
:metadata,
|
3307
3373
|
:declared_transforms,
|
3308
3374
|
:resource_identifier_summaries)
|
3375
|
+
SENSITIVE = []
|
3309
3376
|
include Aws::Structure
|
3310
3377
|
end
|
3311
3378
|
|
@@ -3379,6 +3446,7 @@ module Aws::CloudFormation
|
|
3379
3446
|
class ListChangeSetsInput < Struct.new(
|
3380
3447
|
:stack_name,
|
3381
3448
|
:next_token)
|
3449
|
+
SENSITIVE = []
|
3382
3450
|
include Aws::Structure
|
3383
3451
|
end
|
3384
3452
|
|
@@ -3399,6 +3467,7 @@ module Aws::CloudFormation
|
|
3399
3467
|
class ListChangeSetsOutput < Struct.new(
|
3400
3468
|
:summaries,
|
3401
3469
|
:next_token)
|
3470
|
+
SENSITIVE = []
|
3402
3471
|
include Aws::Structure
|
3403
3472
|
end
|
3404
3473
|
|
@@ -3419,6 +3488,7 @@ module Aws::CloudFormation
|
|
3419
3488
|
#
|
3420
3489
|
class ListExportsInput < Struct.new(
|
3421
3490
|
:next_token)
|
3491
|
+
SENSITIVE = []
|
3422
3492
|
include Aws::Structure
|
3423
3493
|
end
|
3424
3494
|
|
@@ -3437,6 +3507,7 @@ module Aws::CloudFormation
|
|
3437
3507
|
class ListExportsOutput < Struct.new(
|
3438
3508
|
:exports,
|
3439
3509
|
:next_token)
|
3510
|
+
SENSITIVE = []
|
3440
3511
|
include Aws::Structure
|
3441
3512
|
end
|
3442
3513
|
|
@@ -3464,6 +3535,7 @@ module Aws::CloudFormation
|
|
3464
3535
|
class ListImportsInput < Struct.new(
|
3465
3536
|
:export_name,
|
3466
3537
|
:next_token)
|
3538
|
+
SENSITIVE = []
|
3467
3539
|
include Aws::Structure
|
3468
3540
|
end
|
3469
3541
|
|
@@ -3482,6 +3554,7 @@ module Aws::CloudFormation
|
|
3482
3554
|
class ListImportsOutput < Struct.new(
|
3483
3555
|
:imports,
|
3484
3556
|
:next_token)
|
3557
|
+
SENSITIVE = []
|
3485
3558
|
include Aws::Structure
|
3486
3559
|
end
|
3487
3560
|
|
@@ -3492,6 +3565,12 @@ module Aws::CloudFormation
|
|
3492
3565
|
# stack_set_name: "StackSetName", # required
|
3493
3566
|
# next_token: "NextToken",
|
3494
3567
|
# max_results: 1,
|
3568
|
+
# filters: [
|
3569
|
+
# {
|
3570
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
3571
|
+
# values: "StackInstanceFilterValues",
|
3572
|
+
# },
|
3573
|
+
# ],
|
3495
3574
|
# stack_instance_account: "Account",
|
3496
3575
|
# stack_instance_region: "Region",
|
3497
3576
|
# }
|
@@ -3517,6 +3596,10 @@ module Aws::CloudFormation
|
|
3517
3596
|
# request parameter to get the next set of results.
|
3518
3597
|
# @return [Integer]
|
3519
3598
|
#
|
3599
|
+
# @!attribute [rw] filters
|
3600
|
+
# The status that stack instances are filtered by.
|
3601
|
+
# @return [Array<Types::StackInstanceFilter>]
|
3602
|
+
#
|
3520
3603
|
# @!attribute [rw] stack_instance_account
|
3521
3604
|
# The name of the AWS account that you want to list stack instances
|
3522
3605
|
# for.
|
@@ -3532,8 +3615,10 @@ module Aws::CloudFormation
|
|
3532
3615
|
:stack_set_name,
|
3533
3616
|
:next_token,
|
3534
3617
|
:max_results,
|
3618
|
+
:filters,
|
3535
3619
|
:stack_instance_account,
|
3536
3620
|
:stack_instance_region)
|
3621
|
+
SENSITIVE = []
|
3537
3622
|
include Aws::Structure
|
3538
3623
|
end
|
3539
3624
|
|
@@ -3555,6 +3640,7 @@ module Aws::CloudFormation
|
|
3555
3640
|
class ListStackInstancesOutput < Struct.new(
|
3556
3641
|
:summaries,
|
3557
3642
|
:next_token)
|
3643
|
+
SENSITIVE = []
|
3558
3644
|
include Aws::Structure
|
3559
3645
|
end
|
3560
3646
|
|
@@ -3590,6 +3676,7 @@ module Aws::CloudFormation
|
|
3590
3676
|
class ListStackResourcesInput < Struct.new(
|
3591
3677
|
:stack_name,
|
3592
3678
|
:next_token)
|
3679
|
+
SENSITIVE = []
|
3593
3680
|
include Aws::Structure
|
3594
3681
|
end
|
3595
3682
|
|
@@ -3610,6 +3697,7 @@ module Aws::CloudFormation
|
|
3610
3697
|
class ListStackResourcesOutput < Struct.new(
|
3611
3698
|
:stack_resource_summaries,
|
3612
3699
|
:next_token)
|
3700
|
+
SENSITIVE = []
|
3613
3701
|
include Aws::Structure
|
3614
3702
|
end
|
3615
3703
|
|
@@ -3656,6 +3744,7 @@ module Aws::CloudFormation
|
|
3656
3744
|
:operation_id,
|
3657
3745
|
:next_token,
|
3658
3746
|
:max_results)
|
3747
|
+
SENSITIVE = []
|
3659
3748
|
include Aws::Structure
|
3660
3749
|
end
|
3661
3750
|
|
@@ -3678,6 +3767,7 @@ module Aws::CloudFormation
|
|
3678
3767
|
class ListStackSetOperationResultsOutput < Struct.new(
|
3679
3768
|
:summaries,
|
3680
3769
|
:next_token)
|
3770
|
+
SENSITIVE = []
|
3681
3771
|
include Aws::Structure
|
3682
3772
|
end
|
3683
3773
|
|
@@ -3718,6 +3808,7 @@ module Aws::CloudFormation
|
|
3718
3808
|
:stack_set_name,
|
3719
3809
|
:next_token,
|
3720
3810
|
:max_results)
|
3811
|
+
SENSITIVE = []
|
3721
3812
|
include Aws::Structure
|
3722
3813
|
end
|
3723
3814
|
|
@@ -3739,6 +3830,7 @@ module Aws::CloudFormation
|
|
3739
3830
|
class ListStackSetOperationsOutput < Struct.new(
|
3740
3831
|
:summaries,
|
3741
3832
|
:next_token)
|
3833
|
+
SENSITIVE = []
|
3742
3834
|
include Aws::Structure
|
3743
3835
|
end
|
3744
3836
|
|
@@ -3778,6 +3870,7 @@ module Aws::CloudFormation
|
|
3778
3870
|
:next_token,
|
3779
3871
|
:max_results,
|
3780
3872
|
:status)
|
3873
|
+
SENSITIVE = []
|
3781
3874
|
include Aws::Structure
|
3782
3875
|
end
|
3783
3876
|
|
@@ -3799,6 +3892,7 @@ module Aws::CloudFormation
|
|
3799
3892
|
class ListStackSetsOutput < Struct.new(
|
3800
3893
|
:summaries,
|
3801
3894
|
:next_token)
|
3895
|
+
SENSITIVE = []
|
3802
3896
|
include Aws::Structure
|
3803
3897
|
end
|
3804
3898
|
|
@@ -3829,6 +3923,7 @@ module Aws::CloudFormation
|
|
3829
3923
|
class ListStacksInput < Struct.new(
|
3830
3924
|
:next_token,
|
3831
3925
|
:stack_status_filter)
|
3926
|
+
SENSITIVE = []
|
3832
3927
|
include Aws::Structure
|
3833
3928
|
end
|
3834
3929
|
|
@@ -3850,6 +3945,7 @@ module Aws::CloudFormation
|
|
3850
3945
|
class ListStacksOutput < Struct.new(
|
3851
3946
|
:stack_summaries,
|
3852
3947
|
:next_token)
|
3948
|
+
SENSITIVE = []
|
3853
3949
|
include Aws::Structure
|
3854
3950
|
end
|
3855
3951
|
|
@@ -3919,6 +4015,7 @@ module Aws::CloudFormation
|
|
3919
4015
|
:registration_status_filter,
|
3920
4016
|
:max_results,
|
3921
4017
|
:next_token)
|
4018
|
+
SENSITIVE = []
|
3922
4019
|
include Aws::Structure
|
3923
4020
|
end
|
3924
4021
|
|
@@ -3942,6 +4039,7 @@ module Aws::CloudFormation
|
|
3942
4039
|
class ListTypeRegistrationsOutput < Struct.new(
|
3943
4040
|
:registration_token_list,
|
3944
4041
|
:next_token)
|
4042
|
+
SENSITIVE = []
|
3945
4043
|
include Aws::Structure
|
3946
4044
|
end
|
3947
4045
|
|
@@ -4022,6 +4120,7 @@ module Aws::CloudFormation
|
|
4022
4120
|
:max_results,
|
4023
4121
|
:next_token,
|
4024
4122
|
:deprecated_status)
|
4123
|
+
SENSITIVE = []
|
4025
4124
|
include Aws::Structure
|
4026
4125
|
end
|
4027
4126
|
|
@@ -4043,6 +4142,7 @@ module Aws::CloudFormation
|
|
4043
4142
|
class ListTypeVersionsOutput < Struct.new(
|
4044
4143
|
:type_version_summaries,
|
4045
4144
|
:next_token)
|
4145
|
+
SENSITIVE = []
|
4046
4146
|
include Aws::Structure
|
4047
4147
|
end
|
4048
4148
|
|
@@ -4128,6 +4228,7 @@ module Aws::CloudFormation
|
|
4128
4228
|
:deprecated_status,
|
4129
4229
|
:max_results,
|
4130
4230
|
:next_token)
|
4231
|
+
SENSITIVE = []
|
4131
4232
|
include Aws::Structure
|
4132
4233
|
end
|
4133
4234
|
|
@@ -4149,6 +4250,7 @@ module Aws::CloudFormation
|
|
4149
4250
|
class ListTypesOutput < Struct.new(
|
4150
4251
|
:type_summaries,
|
4151
4252
|
:next_token)
|
4253
|
+
SENSITIVE = []
|
4152
4254
|
include Aws::Structure
|
4153
4255
|
end
|
4154
4256
|
|
@@ -4177,6 +4279,7 @@ module Aws::CloudFormation
|
|
4177
4279
|
class LoggingConfig < Struct.new(
|
4178
4280
|
:log_role_arn,
|
4179
4281
|
:log_group_name)
|
4282
|
+
SENSITIVE = []
|
4180
4283
|
include Aws::Structure
|
4181
4284
|
end
|
4182
4285
|
|
@@ -4241,6 +4344,7 @@ module Aws::CloudFormation
|
|
4241
4344
|
:output_value,
|
4242
4345
|
:description,
|
4243
4346
|
:export_name)
|
4347
|
+
SENSITIVE = []
|
4244
4348
|
include Aws::Structure
|
4245
4349
|
end
|
4246
4350
|
|
@@ -4289,6 +4393,7 @@ module Aws::CloudFormation
|
|
4289
4393
|
:parameter_value,
|
4290
4394
|
:use_previous_value,
|
4291
4395
|
:resolved_value)
|
4396
|
+
SENSITIVE = []
|
4292
4397
|
include Aws::Structure
|
4293
4398
|
end
|
4294
4399
|
|
@@ -4305,6 +4410,7 @@ module Aws::CloudFormation
|
|
4305
4410
|
#
|
4306
4411
|
class ParameterConstraints < Struct.new(
|
4307
4412
|
:allowed_values)
|
4413
|
+
SENSITIVE = []
|
4308
4414
|
include Aws::Structure
|
4309
4415
|
end
|
4310
4416
|
|
@@ -4345,6 +4451,7 @@ module Aws::CloudFormation
|
|
4345
4451
|
:no_echo,
|
4346
4452
|
:description,
|
4347
4453
|
:parameter_constraints)
|
4454
|
+
SENSITIVE = []
|
4348
4455
|
include Aws::Structure
|
4349
4456
|
end
|
4350
4457
|
|
@@ -4367,6 +4474,7 @@ module Aws::CloudFormation
|
|
4367
4474
|
class PhysicalResourceIdContextKeyValuePair < Struct.new(
|
4368
4475
|
:key,
|
4369
4476
|
:value)
|
4477
|
+
SENSITIVE = []
|
4370
4478
|
include Aws::Structure
|
4371
4479
|
end
|
4372
4480
|
|
@@ -4415,6 +4523,7 @@ module Aws::CloudFormation
|
|
4415
4523
|
:expected_value,
|
4416
4524
|
:actual_value,
|
4417
4525
|
:difference_type)
|
4526
|
+
SENSITIVE = []
|
4418
4527
|
include Aws::Structure
|
4419
4528
|
end
|
4420
4529
|
|
@@ -4497,6 +4606,7 @@ module Aws::CloudFormation
|
|
4497
4606
|
:error_code,
|
4498
4607
|
:resource_model,
|
4499
4608
|
:client_request_token)
|
4609
|
+
SENSITIVE = []
|
4500
4610
|
include Aws::Structure
|
4501
4611
|
end
|
4502
4612
|
|
@@ -4577,14 +4687,17 @@ module Aws::CloudFormation
|
|
4577
4687
|
# @return [Types::LoggingConfig]
|
4578
4688
|
#
|
4579
4689
|
# @!attribute [rw] execution_role_arn
|
4580
|
-
# The Amazon Resource Name (ARN) of the IAM
|
4581
|
-
#
|
4582
|
-
# its handlers, you must create an <i> <a
|
4690
|
+
# The Amazon Resource Name (ARN) of the IAM role for CloudFormation to
|
4691
|
+
# assume when invoking the resource provider. If your resource type
|
4692
|
+
# calls AWS APIs in any of its handlers, you must create an <i> <a
|
4583
4693
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
4584
4694
|
# execution role</a> </i> that includes the necessary permissions to
|
4585
4695
|
# call those AWS APIs, and provision that execution role in your
|
4586
|
-
# account. CloudFormation
|
4587
|
-
#
|
4696
|
+
# account. When CloudFormation needs to invoke the resource provider
|
4697
|
+
# handler, CloudFormation assumes this execution role to create a
|
4698
|
+
# temporary session token, which it then passes to the resource
|
4699
|
+
# provider handler, thereby supplying your resource provider with the
|
4700
|
+
# appropriate credentials.
|
4588
4701
|
# @return [String]
|
4589
4702
|
#
|
4590
4703
|
# @!attribute [rw] client_request_token
|
@@ -4604,6 +4717,7 @@ module Aws::CloudFormation
|
|
4604
4717
|
:logging_config,
|
4605
4718
|
:execution_role_arn,
|
4606
4719
|
:client_request_token)
|
4720
|
+
SENSITIVE = []
|
4607
4721
|
include Aws::Structure
|
4608
4722
|
end
|
4609
4723
|
|
@@ -4619,6 +4733,7 @@ module Aws::CloudFormation
|
|
4619
4733
|
#
|
4620
4734
|
class RegisterTypeOutput < Struct.new(
|
4621
4735
|
:registration_token)
|
4736
|
+
SENSITIVE = []
|
4622
4737
|
include Aws::Structure
|
4623
4738
|
end
|
4624
4739
|
|
@@ -4684,6 +4799,7 @@ module Aws::CloudFormation
|
|
4684
4799
|
:replacement,
|
4685
4800
|
:scope,
|
4686
4801
|
:details)
|
4802
|
+
SENSITIVE = []
|
4687
4803
|
include Aws::Structure
|
4688
4804
|
end
|
4689
4805
|
|
@@ -4764,6 +4880,7 @@ module Aws::CloudFormation
|
|
4764
4880
|
:evaluation,
|
4765
4881
|
:change_source,
|
4766
4882
|
:causing_entity)
|
4883
|
+
SENSITIVE = []
|
4767
4884
|
include Aws::Structure
|
4768
4885
|
end
|
4769
4886
|
|
@@ -4794,6 +4911,7 @@ module Aws::CloudFormation
|
|
4794
4911
|
:resource_type,
|
4795
4912
|
:logical_resource_ids,
|
4796
4913
|
:resource_identifiers)
|
4914
|
+
SENSITIVE = []
|
4797
4915
|
include Aws::Structure
|
4798
4916
|
end
|
4799
4917
|
|
@@ -4829,6 +4947,7 @@ module Aws::CloudFormation
|
|
4829
4947
|
:attribute,
|
4830
4948
|
:name,
|
4831
4949
|
:requires_recreation)
|
4950
|
+
SENSITIVE = []
|
4832
4951
|
include Aws::Structure
|
4833
4952
|
end
|
4834
4953
|
|
@@ -4847,7 +4966,13 @@ module Aws::CloudFormation
|
|
4847
4966
|
#
|
4848
4967
|
# @!attribute [rw] resource_type
|
4849
4968
|
# The type of resource to import into your stack, such as
|
4850
|
-
# `AWS::S3::Bucket`.
|
4969
|
+
# `AWS::S3::Bucket`. For a list of supported resource types, see
|
4970
|
+
# [Resources that support import operations][1] in the AWS
|
4971
|
+
# CloudFormation User Guide.
|
4972
|
+
#
|
4973
|
+
#
|
4974
|
+
#
|
4975
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html
|
4851
4976
|
# @return [String]
|
4852
4977
|
#
|
4853
4978
|
# @!attribute [rw] logical_resource_id
|
@@ -4867,6 +4992,7 @@ module Aws::CloudFormation
|
|
4867
4992
|
:resource_type,
|
4868
4993
|
:logical_resource_id,
|
4869
4994
|
:resource_identifier)
|
4995
|
+
SENSITIVE = []
|
4870
4996
|
include Aws::Structure
|
4871
4997
|
end
|
4872
4998
|
|
@@ -4952,6 +5078,7 @@ module Aws::CloudFormation
|
|
4952
5078
|
class RollbackConfiguration < Struct.new(
|
4953
5079
|
:rollback_triggers,
|
4954
5080
|
:monitoring_time_in_minutes)
|
5081
|
+
SENSITIVE = []
|
4955
5082
|
include Aws::Structure
|
4956
5083
|
end
|
4957
5084
|
|
@@ -4990,6 +5117,7 @@ module Aws::CloudFormation
|
|
4990
5117
|
class RollbackTrigger < Struct.new(
|
4991
5118
|
:arn,
|
4992
5119
|
:type)
|
5120
|
+
SENSITIVE = []
|
4993
5121
|
include Aws::Structure
|
4994
5122
|
end
|
4995
5123
|
|
@@ -5033,6 +5161,7 @@ module Aws::CloudFormation
|
|
5033
5161
|
:stack_name,
|
5034
5162
|
:stack_policy_body,
|
5035
5163
|
:stack_policy_url)
|
5164
|
+
SENSITIVE = []
|
5036
5165
|
include Aws::Structure
|
5037
5166
|
end
|
5038
5167
|
|
@@ -5081,6 +5210,7 @@ module Aws::CloudFormation
|
|
5081
5210
|
:type,
|
5082
5211
|
:type_name,
|
5083
5212
|
:version_id)
|
5213
|
+
SENSITIVE = []
|
5084
5214
|
include Aws::Structure
|
5085
5215
|
end
|
5086
5216
|
|
@@ -5131,6 +5261,7 @@ module Aws::CloudFormation
|
|
5131
5261
|
:logical_resource_id,
|
5132
5262
|
:unique_id,
|
5133
5263
|
:status)
|
5264
|
+
SENSITIVE = []
|
5134
5265
|
include Aws::Structure
|
5135
5266
|
end
|
5136
5267
|
|
@@ -5296,6 +5427,7 @@ module Aws::CloudFormation
|
|
5296
5427
|
:parent_id,
|
5297
5428
|
:root_id,
|
5298
5429
|
:drift_information)
|
5430
|
+
SENSITIVE = []
|
5299
5431
|
include Aws::Structure
|
5300
5432
|
end
|
5301
5433
|
|
@@ -5333,6 +5465,7 @@ module Aws::CloudFormation
|
|
5333
5465
|
class StackDriftInformation < Struct.new(
|
5334
5466
|
:stack_drift_status,
|
5335
5467
|
:last_check_timestamp)
|
5468
|
+
SENSITIVE = []
|
5336
5469
|
include Aws::Structure
|
5337
5470
|
end
|
5338
5471
|
|
@@ -5370,6 +5503,7 @@ module Aws::CloudFormation
|
|
5370
5503
|
class StackDriftInformationSummary < Struct.new(
|
5371
5504
|
:stack_drift_status,
|
5372
5505
|
:last_check_timestamp)
|
5506
|
+
SENSITIVE = []
|
5373
5507
|
include Aws::Structure
|
5374
5508
|
end
|
5375
5509
|
|
@@ -5453,6 +5587,7 @@ module Aws::CloudFormation
|
|
5453
5587
|
:resource_status_reason,
|
5454
5588
|
:resource_properties,
|
5455
5589
|
:client_request_token)
|
5590
|
+
SENSITIVE = []
|
5456
5591
|
include Aws::Structure
|
5457
5592
|
end
|
5458
5593
|
|
@@ -5513,13 +5648,23 @@ module Aws::CloudFormation
|
|
5513
5648
|
# * `CURRENT`\: The stack is currently up to date with the stack set.
|
5514
5649
|
# @return [String]
|
5515
5650
|
#
|
5651
|
+
# @!attribute [rw] stack_instance_status
|
5652
|
+
# The detailed status of the stack instance.
|
5653
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5654
|
+
#
|
5516
5655
|
# @!attribute [rw] status_reason
|
5517
5656
|
# The explanation for the specific status code that is assigned to
|
5518
5657
|
# this stack instance.
|
5519
5658
|
# @return [String]
|
5520
5659
|
#
|
5521
5660
|
# @!attribute [rw] organizational_unit_id
|
5522
|
-
#
|
5661
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
5662
|
+
# organizational unit (OU) IDs that you specified for
|
5663
|
+
# [DeploymentTargets][1].
|
5664
|
+
#
|
5665
|
+
#
|
5666
|
+
#
|
5667
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
5523
5668
|
# @return [String]
|
5524
5669
|
#
|
5525
5670
|
# @!attribute [rw] drift_status
|
@@ -5556,10 +5701,77 @@ module Aws::CloudFormation
|
|
5556
5701
|
:stack_id,
|
5557
5702
|
:parameter_overrides,
|
5558
5703
|
:status,
|
5704
|
+
:stack_instance_status,
|
5559
5705
|
:status_reason,
|
5560
5706
|
:organizational_unit_id,
|
5561
5707
|
:drift_status,
|
5562
5708
|
:last_drift_check_timestamp)
|
5709
|
+
SENSITIVE = []
|
5710
|
+
include Aws::Structure
|
5711
|
+
end
|
5712
|
+
|
5713
|
+
# The detailed status of the stack instance.
|
5714
|
+
#
|
5715
|
+
# @!attribute [rw] detailed_status
|
5716
|
+
# * `CANCELLED`\: The operation in the specified account and Region
|
5717
|
+
# has been cancelled. This is either because a user has stopped the
|
5718
|
+
# stack set operation, or because the failure tolerance of the stack
|
5719
|
+
# set operation has been exceeded.
|
5720
|
+
#
|
5721
|
+
# * `FAILED`\: The operation in the specified account and Region
|
5722
|
+
# failed. If the stack set operation fails in enough accounts within
|
5723
|
+
# a Region, the failure tolerance for the stack set operation as a
|
5724
|
+
# whole might be exceeded.
|
5725
|
+
#
|
5726
|
+
# * `INOPERABLE`\: A `DeleteStackInstances` operation has failed and
|
5727
|
+
# left the stack in an unstable state. Stacks in this state are
|
5728
|
+
# excluded from further `UpdateStackSet` operations. You might need
|
5729
|
+
# to perform a `DeleteStackInstances` operation, with `RetainStacks`
|
5730
|
+
# set to `true`, to delete the stack instance, and then delete the
|
5731
|
+
# stack manually.
|
5732
|
+
#
|
5733
|
+
# * `PENDING`\: The operation in the specified account and Region has
|
5734
|
+
# yet to start.
|
5735
|
+
#
|
5736
|
+
# * `RUNNING`\: The operation in the specified account and Region is
|
5737
|
+
# currently in progress.
|
5738
|
+
#
|
5739
|
+
# * `SUCCEEDED`\: The operation in the specified account and Region
|
5740
|
+
# completed successfully.
|
5741
|
+
# @return [String]
|
5742
|
+
#
|
5743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceComprehensiveStatus AWS API Documentation
|
5744
|
+
#
|
5745
|
+
class StackInstanceComprehensiveStatus < Struct.new(
|
5746
|
+
:detailed_status)
|
5747
|
+
SENSITIVE = []
|
5748
|
+
include Aws::Structure
|
5749
|
+
end
|
5750
|
+
|
5751
|
+
# The status that stack instances are filtered by.
|
5752
|
+
#
|
5753
|
+
# @note When making an API call, you may pass StackInstanceFilter
|
5754
|
+
# data as a hash:
|
5755
|
+
#
|
5756
|
+
# {
|
5757
|
+
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS
|
5758
|
+
# values: "StackInstanceFilterValues",
|
5759
|
+
# }
|
5760
|
+
#
|
5761
|
+
# @!attribute [rw] name
|
5762
|
+
# The type of filter to apply.
|
5763
|
+
# @return [String]
|
5764
|
+
#
|
5765
|
+
# @!attribute [rw] values
|
5766
|
+
# The status to filter by.
|
5767
|
+
# @return [String]
|
5768
|
+
#
|
5769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackInstanceFilter AWS API Documentation
|
5770
|
+
#
|
5771
|
+
class StackInstanceFilter < Struct.new(
|
5772
|
+
:name,
|
5773
|
+
:values)
|
5774
|
+
SENSITIVE = []
|
5563
5775
|
include Aws::Structure
|
5564
5776
|
end
|
5565
5777
|
|
@@ -5620,8 +5832,18 @@ module Aws::CloudFormation
|
|
5620
5832
|
# instance.
|
5621
5833
|
# @return [String]
|
5622
5834
|
#
|
5835
|
+
# @!attribute [rw] stack_instance_status
|
5836
|
+
# The detailed status of the stack instance.
|
5837
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5838
|
+
#
|
5623
5839
|
# @!attribute [rw] organizational_unit_id
|
5624
|
-
#
|
5840
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
5841
|
+
# organizational unit (OU) IDs that you specified for
|
5842
|
+
# [DeploymentTargets][1].
|
5843
|
+
#
|
5844
|
+
#
|
5845
|
+
#
|
5846
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
5625
5847
|
# @return [String]
|
5626
5848
|
#
|
5627
5849
|
# @!attribute [rw] drift_status
|
@@ -5658,9 +5880,11 @@ module Aws::CloudFormation
|
|
5658
5880
|
:stack_id,
|
5659
5881
|
:status,
|
5660
5882
|
:status_reason,
|
5883
|
+
:stack_instance_status,
|
5661
5884
|
:organizational_unit_id,
|
5662
5885
|
:drift_status,
|
5663
5886
|
:last_drift_check_timestamp)
|
5887
|
+
SENSITIVE = []
|
5664
5888
|
include Aws::Structure
|
5665
5889
|
end
|
5666
5890
|
|
@@ -5733,6 +5957,7 @@ module Aws::CloudFormation
|
|
5733
5957
|
:resource_status_reason,
|
5734
5958
|
:description,
|
5735
5959
|
:drift_information)
|
5960
|
+
SENSITIVE = []
|
5736
5961
|
include Aws::Structure
|
5737
5962
|
end
|
5738
5963
|
|
@@ -5816,6 +6041,7 @@ module Aws::CloudFormation
|
|
5816
6041
|
:description,
|
5817
6042
|
:metadata,
|
5818
6043
|
:drift_information)
|
6044
|
+
SENSITIVE = []
|
5819
6045
|
include Aws::Structure
|
5820
6046
|
end
|
5821
6047
|
|
@@ -5923,6 +6149,7 @@ module Aws::CloudFormation
|
|
5923
6149
|
:property_differences,
|
5924
6150
|
:stack_resource_drift_status,
|
5925
6151
|
:timestamp)
|
6152
|
+
SENSITIVE = []
|
5926
6153
|
include Aws::Structure
|
5927
6154
|
end
|
5928
6155
|
|
@@ -5964,6 +6191,7 @@ module Aws::CloudFormation
|
|
5964
6191
|
class StackResourceDriftInformation < Struct.new(
|
5965
6192
|
:stack_resource_drift_status,
|
5966
6193
|
:last_check_timestamp)
|
6194
|
+
SENSITIVE = []
|
5967
6195
|
include Aws::Structure
|
5968
6196
|
end
|
5969
6197
|
|
@@ -6011,6 +6239,7 @@ module Aws::CloudFormation
|
|
6011
6239
|
class StackResourceDriftInformationSummary < Struct.new(
|
6012
6240
|
:stack_resource_drift_status,
|
6013
6241
|
:last_check_timestamp)
|
6242
|
+
SENSITIVE = []
|
6014
6243
|
include Aws::Structure
|
6015
6244
|
end
|
6016
6245
|
|
@@ -6068,6 +6297,7 @@ module Aws::CloudFormation
|
|
6068
6297
|
:resource_status,
|
6069
6298
|
:resource_status_reason,
|
6070
6299
|
:drift_information)
|
6300
|
+
SENSITIVE = []
|
6071
6301
|
include Aws::Structure
|
6072
6302
|
end
|
6073
6303
|
|
@@ -6182,7 +6412,13 @@ module Aws::CloudFormation
|
|
6182
6412
|
# @return [String]
|
6183
6413
|
#
|
6184
6414
|
# @!attribute [rw] organizational_unit_ids
|
6185
|
-
#
|
6415
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
6416
|
+
# organizational unit (OU) IDs that you specified for
|
6417
|
+
# [DeploymentTargets][1].
|
6418
|
+
#
|
6419
|
+
#
|
6420
|
+
#
|
6421
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
6186
6422
|
# @return [Array<String>]
|
6187
6423
|
#
|
6188
6424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
@@ -6203,6 +6439,7 @@ module Aws::CloudFormation
|
|
6203
6439
|
:auto_deployment,
|
6204
6440
|
:permission_model,
|
6205
6441
|
:organizational_unit_ids)
|
6442
|
+
SENSITIVE = []
|
6206
6443
|
include Aws::Structure
|
6207
6444
|
end
|
6208
6445
|
|
@@ -6315,6 +6552,7 @@ module Aws::CloudFormation
|
|
6315
6552
|
:in_sync_stack_instances_count,
|
6316
6553
|
:in_progress_stack_instances_count,
|
6317
6554
|
:failed_stack_instances_count)
|
6555
|
+
SENSITIVE = []
|
6318
6556
|
include Aws::Structure
|
6319
6557
|
end
|
6320
6558
|
|
@@ -6470,6 +6708,7 @@ module Aws::CloudFormation
|
|
6470
6708
|
:end_timestamp,
|
6471
6709
|
:deployment_targets,
|
6472
6710
|
:stack_set_drift_detection_details)
|
6711
|
+
SENSITIVE = []
|
6473
6712
|
include Aws::Structure
|
6474
6713
|
end
|
6475
6714
|
|
@@ -6526,9 +6765,9 @@ module Aws::CloudFormation
|
|
6526
6765
|
#
|
6527
6766
|
# @!attribute [rw] max_concurrent_count
|
6528
6767
|
# The maximum number of accounts in which to perform this operation at
|
6529
|
-
# one time. This is dependent on the value of
|
6530
|
-
# `
|
6531
|
-
#
|
6768
|
+
# one time. This is dependent on the value of `FailureToleranceCount`.
|
6769
|
+
# `MaxConcurrentCount` is at most one more than the
|
6770
|
+
# `FailureToleranceCount`.
|
6532
6771
|
#
|
6533
6772
|
# Note that this setting lets you specify the *maximum* for
|
6534
6773
|
# operations. For large deployments, under certain circumstances the
|
@@ -6565,6 +6804,7 @@ module Aws::CloudFormation
|
|
6565
6804
|
:failure_tolerance_percentage,
|
6566
6805
|
:max_concurrent_count,
|
6567
6806
|
:max_concurrent_percentage)
|
6807
|
+
SENSITIVE = []
|
6568
6808
|
include Aws::Structure
|
6569
6809
|
end
|
6570
6810
|
|
@@ -6617,7 +6857,13 @@ module Aws::CloudFormation
|
|
6617
6857
|
# @return [Types::AccountGateResult]
|
6618
6858
|
#
|
6619
6859
|
# @!attribute [rw] organizational_unit_id
|
6620
|
-
#
|
6860
|
+
# \[`Service-managed` permissions\] The organization root ID or
|
6861
|
+
# organizational unit (OU) IDs that you specified for
|
6862
|
+
# [DeploymentTargets][1].
|
6863
|
+
#
|
6864
|
+
#
|
6865
|
+
#
|
6866
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
|
6621
6867
|
# @return [String]
|
6622
6868
|
#
|
6623
6869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationResultSummary AWS API Documentation
|
@@ -6629,6 +6875,7 @@ module Aws::CloudFormation
|
|
6629
6875
|
:status_reason,
|
6630
6876
|
:account_gate_result,
|
6631
6877
|
:organizational_unit_id)
|
6878
|
+
SENSITIVE = []
|
6632
6879
|
include Aws::Structure
|
6633
6880
|
end
|
6634
6881
|
|
@@ -6705,6 +6952,7 @@ module Aws::CloudFormation
|
|
6705
6952
|
:status,
|
6706
6953
|
:creation_timestamp,
|
6707
6954
|
:end_timestamp)
|
6955
|
+
SENSITIVE = []
|
6708
6956
|
include Aws::Structure
|
6709
6957
|
end
|
6710
6958
|
|
@@ -6793,6 +7041,7 @@ module Aws::CloudFormation
|
|
6793
7041
|
:permission_model,
|
6794
7042
|
:drift_status,
|
6795
7043
|
:last_drift_check_timestamp)
|
7044
|
+
SENSITIVE = []
|
6796
7045
|
include Aws::Structure
|
6797
7046
|
end
|
6798
7047
|
|
@@ -6884,6 +7133,7 @@ module Aws::CloudFormation
|
|
6884
7133
|
:parent_id,
|
6885
7134
|
:root_id,
|
6886
7135
|
:drift_information)
|
7136
|
+
SENSITIVE = []
|
6887
7137
|
include Aws::Structure
|
6888
7138
|
end
|
6889
7139
|
|
@@ -6916,6 +7166,7 @@ module Aws::CloudFormation
|
|
6916
7166
|
class StopStackSetOperationInput < Struct.new(
|
6917
7167
|
:stack_set_name,
|
6918
7168
|
:operation_id)
|
7169
|
+
SENSITIVE = []
|
6919
7170
|
include Aws::Structure
|
6920
7171
|
end
|
6921
7172
|
|
@@ -6950,6 +7201,7 @@ module Aws::CloudFormation
|
|
6950
7201
|
class Tag < Struct.new(
|
6951
7202
|
:key,
|
6952
7203
|
:value)
|
7204
|
+
SENSITIVE = []
|
6953
7205
|
include Aws::Structure
|
6954
7206
|
end
|
6955
7207
|
|
@@ -6979,6 +7231,7 @@ module Aws::CloudFormation
|
|
6979
7231
|
:default_value,
|
6980
7232
|
:no_echo,
|
6981
7233
|
:description)
|
7234
|
+
SENSITIVE = []
|
6982
7235
|
include Aws::Structure
|
6983
7236
|
end
|
6984
7237
|
|
@@ -7032,6 +7285,7 @@ module Aws::CloudFormation
|
|
7032
7285
|
:type_arn,
|
7033
7286
|
:last_updated,
|
7034
7287
|
:description)
|
7288
|
+
SENSITIVE = []
|
7035
7289
|
include Aws::Structure
|
7036
7290
|
end
|
7037
7291
|
|
@@ -7078,6 +7332,7 @@ module Aws::CloudFormation
|
|
7078
7332
|
:arn,
|
7079
7333
|
:time_created,
|
7080
7334
|
:description)
|
7335
|
+
SENSITIVE = []
|
7081
7336
|
include Aws::Structure
|
7082
7337
|
end
|
7083
7338
|
|
@@ -7411,6 +7666,7 @@ module Aws::CloudFormation
|
|
7411
7666
|
:notification_arns,
|
7412
7667
|
:tags,
|
7413
7668
|
:client_request_token)
|
7669
|
+
SENSITIVE = []
|
7414
7670
|
include Aws::Structure
|
7415
7671
|
end
|
7416
7672
|
|
@@ -7552,6 +7808,7 @@ module Aws::CloudFormation
|
|
7552
7808
|
:parameter_overrides,
|
7553
7809
|
:operation_preferences,
|
7554
7810
|
:operation_id)
|
7811
|
+
SENSITIVE = []
|
7555
7812
|
include Aws::Structure
|
7556
7813
|
end
|
7557
7814
|
|
@@ -7563,6 +7820,7 @@ module Aws::CloudFormation
|
|
7563
7820
|
#
|
7564
7821
|
class UpdateStackInstancesOutput < Struct.new(
|
7565
7822
|
:operation_id)
|
7823
|
+
SENSITIVE = []
|
7566
7824
|
include Aws::Structure
|
7567
7825
|
end
|
7568
7826
|
|
@@ -7576,6 +7834,7 @@ module Aws::CloudFormation
|
|
7576
7834
|
#
|
7577
7835
|
class UpdateStackOutput < Struct.new(
|
7578
7836
|
:stack_id)
|
7837
|
+
SENSITIVE = []
|
7579
7838
|
include Aws::Structure
|
7580
7839
|
end
|
7581
7840
|
|
@@ -7955,6 +8214,7 @@ module Aws::CloudFormation
|
|
7955
8214
|
:operation_id,
|
7956
8215
|
:accounts,
|
7957
8216
|
:regions)
|
8217
|
+
SENSITIVE = []
|
7958
8218
|
include Aws::Structure
|
7959
8219
|
end
|
7960
8220
|
|
@@ -7966,6 +8226,7 @@ module Aws::CloudFormation
|
|
7966
8226
|
#
|
7967
8227
|
class UpdateStackSetOutput < Struct.new(
|
7968
8228
|
:operation_id)
|
8229
|
+
SENSITIVE = []
|
7969
8230
|
include Aws::Structure
|
7970
8231
|
end
|
7971
8232
|
|
@@ -7991,6 +8252,7 @@ module Aws::CloudFormation
|
|
7991
8252
|
class UpdateTerminationProtectionInput < Struct.new(
|
7992
8253
|
:enable_termination_protection,
|
7993
8254
|
:stack_name)
|
8255
|
+
SENSITIVE = []
|
7994
8256
|
include Aws::Structure
|
7995
8257
|
end
|
7996
8258
|
|
@@ -8002,6 +8264,7 @@ module Aws::CloudFormation
|
|
8002
8264
|
#
|
8003
8265
|
class UpdateTerminationProtectionOutput < Struct.new(
|
8004
8266
|
:stack_id)
|
8267
|
+
SENSITIVE = []
|
8005
8268
|
include Aws::Structure
|
8006
8269
|
end
|
8007
8270
|
|
@@ -8047,6 +8310,7 @@ module Aws::CloudFormation
|
|
8047
8310
|
class ValidateTemplateInput < Struct.new(
|
8048
8311
|
:template_body,
|
8049
8312
|
:template_url)
|
8313
|
+
SENSITIVE = []
|
8050
8314
|
include Aws::Structure
|
8051
8315
|
end
|
8052
8316
|
|
@@ -8092,6 +8356,7 @@ module Aws::CloudFormation
|
|
8092
8356
|
:capabilities,
|
8093
8357
|
:capabilities_reason,
|
8094
8358
|
:declared_transforms)
|
8359
|
+
SENSITIVE = []
|
8095
8360
|
include Aws::Structure
|
8096
8361
|
end
|
8097
8362
|
|