aws-sdk-cloudformation 1.38.0 → 1.43.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 +5 -2
- data/lib/aws-sdk-cloudformation/client.rb +38 -9
- 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 +239 -1
- 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: 79b9d4a31d6046aed327441e75ae7688fddde8f52f9667ffde0073ad247c1b4a
|
4
|
+
data.tar.gz: 73b39f94b306f83040bbacc455b7dee52e8b7d09d850d4bf58a5045ae069213d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47291ef766aae4e908ce49c7dab7fd426de6a80d36314c6833e68da53a6b86bbfadaca7b7ea19fd15cdd69c64677211cb1660de16827040c6c13a2dd6aab5720
|
7
|
+
data.tar.gz: 75cb64e6e7a553f1614f0f9f823ecc2dc06edadf5248e3308031bd7a697f9345096ea3b40e44e8890d5c2e6716c6a864d19eea882fc93aa4b4617723df5156c3
|
@@ -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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -47,9 +50,9 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
47
50
|
#
|
48
51
|
# See {Errors} for more information.
|
49
52
|
#
|
50
|
-
#
|
53
|
+
# @!group service
|
51
54
|
module Aws::CloudFormation
|
52
55
|
|
53
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.43.0'
|
54
57
|
|
55
58
|
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
|
@@ -5303,7 +5332,7 @@ module Aws::CloudFormation
|
|
5303
5332
|
params: params,
|
5304
5333
|
config: config)
|
5305
5334
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5306
|
-
context[:gem_version] = '1.
|
5335
|
+
context[:gem_version] = '1.43.0'
|
5307
5336
|
Seahorse::Client::Request.new(handlers, context)
|
5308
5337
|
end
|
5309
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
|
|
@@ -4607,6 +4717,7 @@ module Aws::CloudFormation
|
|
4607
4717
|
:logging_config,
|
4608
4718
|
:execution_role_arn,
|
4609
4719
|
:client_request_token)
|
4720
|
+
SENSITIVE = []
|
4610
4721
|
include Aws::Structure
|
4611
4722
|
end
|
4612
4723
|
|
@@ -4622,6 +4733,7 @@ module Aws::CloudFormation
|
|
4622
4733
|
#
|
4623
4734
|
class RegisterTypeOutput < Struct.new(
|
4624
4735
|
:registration_token)
|
4736
|
+
SENSITIVE = []
|
4625
4737
|
include Aws::Structure
|
4626
4738
|
end
|
4627
4739
|
|
@@ -4687,6 +4799,7 @@ module Aws::CloudFormation
|
|
4687
4799
|
:replacement,
|
4688
4800
|
:scope,
|
4689
4801
|
:details)
|
4802
|
+
SENSITIVE = []
|
4690
4803
|
include Aws::Structure
|
4691
4804
|
end
|
4692
4805
|
|
@@ -4767,6 +4880,7 @@ module Aws::CloudFormation
|
|
4767
4880
|
:evaluation,
|
4768
4881
|
:change_source,
|
4769
4882
|
:causing_entity)
|
4883
|
+
SENSITIVE = []
|
4770
4884
|
include Aws::Structure
|
4771
4885
|
end
|
4772
4886
|
|
@@ -4797,6 +4911,7 @@ module Aws::CloudFormation
|
|
4797
4911
|
:resource_type,
|
4798
4912
|
:logical_resource_ids,
|
4799
4913
|
:resource_identifiers)
|
4914
|
+
SENSITIVE = []
|
4800
4915
|
include Aws::Structure
|
4801
4916
|
end
|
4802
4917
|
|
@@ -4832,6 +4947,7 @@ module Aws::CloudFormation
|
|
4832
4947
|
:attribute,
|
4833
4948
|
:name,
|
4834
4949
|
:requires_recreation)
|
4950
|
+
SENSITIVE = []
|
4835
4951
|
include Aws::Structure
|
4836
4952
|
end
|
4837
4953
|
|
@@ -4850,7 +4966,13 @@ module Aws::CloudFormation
|
|
4850
4966
|
#
|
4851
4967
|
# @!attribute [rw] resource_type
|
4852
4968
|
# The type of resource to import into your stack, such as
|
4853
|
-
# `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
|
4854
4976
|
# @return [String]
|
4855
4977
|
#
|
4856
4978
|
# @!attribute [rw] logical_resource_id
|
@@ -4870,6 +4992,7 @@ module Aws::CloudFormation
|
|
4870
4992
|
:resource_type,
|
4871
4993
|
:logical_resource_id,
|
4872
4994
|
:resource_identifier)
|
4995
|
+
SENSITIVE = []
|
4873
4996
|
include Aws::Structure
|
4874
4997
|
end
|
4875
4998
|
|
@@ -4955,6 +5078,7 @@ module Aws::CloudFormation
|
|
4955
5078
|
class RollbackConfiguration < Struct.new(
|
4956
5079
|
:rollback_triggers,
|
4957
5080
|
:monitoring_time_in_minutes)
|
5081
|
+
SENSITIVE = []
|
4958
5082
|
include Aws::Structure
|
4959
5083
|
end
|
4960
5084
|
|
@@ -4993,6 +5117,7 @@ module Aws::CloudFormation
|
|
4993
5117
|
class RollbackTrigger < Struct.new(
|
4994
5118
|
:arn,
|
4995
5119
|
:type)
|
5120
|
+
SENSITIVE = []
|
4996
5121
|
include Aws::Structure
|
4997
5122
|
end
|
4998
5123
|
|
@@ -5036,6 +5161,7 @@ module Aws::CloudFormation
|
|
5036
5161
|
:stack_name,
|
5037
5162
|
:stack_policy_body,
|
5038
5163
|
:stack_policy_url)
|
5164
|
+
SENSITIVE = []
|
5039
5165
|
include Aws::Structure
|
5040
5166
|
end
|
5041
5167
|
|
@@ -5084,6 +5210,7 @@ module Aws::CloudFormation
|
|
5084
5210
|
:type,
|
5085
5211
|
:type_name,
|
5086
5212
|
:version_id)
|
5213
|
+
SENSITIVE = []
|
5087
5214
|
include Aws::Structure
|
5088
5215
|
end
|
5089
5216
|
|
@@ -5134,6 +5261,7 @@ module Aws::CloudFormation
|
|
5134
5261
|
:logical_resource_id,
|
5135
5262
|
:unique_id,
|
5136
5263
|
:status)
|
5264
|
+
SENSITIVE = []
|
5137
5265
|
include Aws::Structure
|
5138
5266
|
end
|
5139
5267
|
|
@@ -5299,6 +5427,7 @@ module Aws::CloudFormation
|
|
5299
5427
|
:parent_id,
|
5300
5428
|
:root_id,
|
5301
5429
|
:drift_information)
|
5430
|
+
SENSITIVE = []
|
5302
5431
|
include Aws::Structure
|
5303
5432
|
end
|
5304
5433
|
|
@@ -5336,6 +5465,7 @@ module Aws::CloudFormation
|
|
5336
5465
|
class StackDriftInformation < Struct.new(
|
5337
5466
|
:stack_drift_status,
|
5338
5467
|
:last_check_timestamp)
|
5468
|
+
SENSITIVE = []
|
5339
5469
|
include Aws::Structure
|
5340
5470
|
end
|
5341
5471
|
|
@@ -5373,6 +5503,7 @@ module Aws::CloudFormation
|
|
5373
5503
|
class StackDriftInformationSummary < Struct.new(
|
5374
5504
|
:stack_drift_status,
|
5375
5505
|
:last_check_timestamp)
|
5506
|
+
SENSITIVE = []
|
5376
5507
|
include Aws::Structure
|
5377
5508
|
end
|
5378
5509
|
|
@@ -5456,6 +5587,7 @@ module Aws::CloudFormation
|
|
5456
5587
|
:resource_status_reason,
|
5457
5588
|
:resource_properties,
|
5458
5589
|
:client_request_token)
|
5590
|
+
SENSITIVE = []
|
5459
5591
|
include Aws::Structure
|
5460
5592
|
end
|
5461
5593
|
|
@@ -5516,6 +5648,10 @@ module Aws::CloudFormation
|
|
5516
5648
|
# * `CURRENT`\: The stack is currently up to date with the stack set.
|
5517
5649
|
# @return [String]
|
5518
5650
|
#
|
5651
|
+
# @!attribute [rw] stack_instance_status
|
5652
|
+
# The detailed status of the stack instance.
|
5653
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5654
|
+
#
|
5519
5655
|
# @!attribute [rw] status_reason
|
5520
5656
|
# The explanation for the specific status code that is assigned to
|
5521
5657
|
# this stack instance.
|
@@ -5565,10 +5701,77 @@ module Aws::CloudFormation
|
|
5565
5701
|
:stack_id,
|
5566
5702
|
:parameter_overrides,
|
5567
5703
|
:status,
|
5704
|
+
:stack_instance_status,
|
5568
5705
|
:status_reason,
|
5569
5706
|
:organizational_unit_id,
|
5570
5707
|
:drift_status,
|
5571
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 = []
|
5572
5775
|
include Aws::Structure
|
5573
5776
|
end
|
5574
5777
|
|
@@ -5629,6 +5832,10 @@ module Aws::CloudFormation
|
|
5629
5832
|
# instance.
|
5630
5833
|
# @return [String]
|
5631
5834
|
#
|
5835
|
+
# @!attribute [rw] stack_instance_status
|
5836
|
+
# The detailed status of the stack instance.
|
5837
|
+
# @return [Types::StackInstanceComprehensiveStatus]
|
5838
|
+
#
|
5632
5839
|
# @!attribute [rw] organizational_unit_id
|
5633
5840
|
# \[`Service-managed` permissions\] The organization root ID or
|
5634
5841
|
# organizational unit (OU) IDs that you specified for
|
@@ -5673,9 +5880,11 @@ module Aws::CloudFormation
|
|
5673
5880
|
:stack_id,
|
5674
5881
|
:status,
|
5675
5882
|
:status_reason,
|
5883
|
+
:stack_instance_status,
|
5676
5884
|
:organizational_unit_id,
|
5677
5885
|
:drift_status,
|
5678
5886
|
:last_drift_check_timestamp)
|
5887
|
+
SENSITIVE = []
|
5679
5888
|
include Aws::Structure
|
5680
5889
|
end
|
5681
5890
|
|
@@ -5748,6 +5957,7 @@ module Aws::CloudFormation
|
|
5748
5957
|
:resource_status_reason,
|
5749
5958
|
:description,
|
5750
5959
|
:drift_information)
|
5960
|
+
SENSITIVE = []
|
5751
5961
|
include Aws::Structure
|
5752
5962
|
end
|
5753
5963
|
|
@@ -5831,6 +6041,7 @@ module Aws::CloudFormation
|
|
5831
6041
|
:description,
|
5832
6042
|
:metadata,
|
5833
6043
|
:drift_information)
|
6044
|
+
SENSITIVE = []
|
5834
6045
|
include Aws::Structure
|
5835
6046
|
end
|
5836
6047
|
|
@@ -5938,6 +6149,7 @@ module Aws::CloudFormation
|
|
5938
6149
|
:property_differences,
|
5939
6150
|
:stack_resource_drift_status,
|
5940
6151
|
:timestamp)
|
6152
|
+
SENSITIVE = []
|
5941
6153
|
include Aws::Structure
|
5942
6154
|
end
|
5943
6155
|
|
@@ -5979,6 +6191,7 @@ module Aws::CloudFormation
|
|
5979
6191
|
class StackResourceDriftInformation < Struct.new(
|
5980
6192
|
:stack_resource_drift_status,
|
5981
6193
|
:last_check_timestamp)
|
6194
|
+
SENSITIVE = []
|
5982
6195
|
include Aws::Structure
|
5983
6196
|
end
|
5984
6197
|
|
@@ -6026,6 +6239,7 @@ module Aws::CloudFormation
|
|
6026
6239
|
class StackResourceDriftInformationSummary < Struct.new(
|
6027
6240
|
:stack_resource_drift_status,
|
6028
6241
|
:last_check_timestamp)
|
6242
|
+
SENSITIVE = []
|
6029
6243
|
include Aws::Structure
|
6030
6244
|
end
|
6031
6245
|
|
@@ -6083,6 +6297,7 @@ module Aws::CloudFormation
|
|
6083
6297
|
:resource_status,
|
6084
6298
|
:resource_status_reason,
|
6085
6299
|
:drift_information)
|
6300
|
+
SENSITIVE = []
|
6086
6301
|
include Aws::Structure
|
6087
6302
|
end
|
6088
6303
|
|
@@ -6224,6 +6439,7 @@ module Aws::CloudFormation
|
|
6224
6439
|
:auto_deployment,
|
6225
6440
|
:permission_model,
|
6226
6441
|
:organizational_unit_ids)
|
6442
|
+
SENSITIVE = []
|
6227
6443
|
include Aws::Structure
|
6228
6444
|
end
|
6229
6445
|
|
@@ -6336,6 +6552,7 @@ module Aws::CloudFormation
|
|
6336
6552
|
:in_sync_stack_instances_count,
|
6337
6553
|
:in_progress_stack_instances_count,
|
6338
6554
|
:failed_stack_instances_count)
|
6555
|
+
SENSITIVE = []
|
6339
6556
|
include Aws::Structure
|
6340
6557
|
end
|
6341
6558
|
|
@@ -6491,6 +6708,7 @@ module Aws::CloudFormation
|
|
6491
6708
|
:end_timestamp,
|
6492
6709
|
:deployment_targets,
|
6493
6710
|
:stack_set_drift_detection_details)
|
6711
|
+
SENSITIVE = []
|
6494
6712
|
include Aws::Structure
|
6495
6713
|
end
|
6496
6714
|
|
@@ -6586,6 +6804,7 @@ module Aws::CloudFormation
|
|
6586
6804
|
:failure_tolerance_percentage,
|
6587
6805
|
:max_concurrent_count,
|
6588
6806
|
:max_concurrent_percentage)
|
6807
|
+
SENSITIVE = []
|
6589
6808
|
include Aws::Structure
|
6590
6809
|
end
|
6591
6810
|
|
@@ -6656,6 +6875,7 @@ module Aws::CloudFormation
|
|
6656
6875
|
:status_reason,
|
6657
6876
|
:account_gate_result,
|
6658
6877
|
:organizational_unit_id)
|
6878
|
+
SENSITIVE = []
|
6659
6879
|
include Aws::Structure
|
6660
6880
|
end
|
6661
6881
|
|
@@ -6732,6 +6952,7 @@ module Aws::CloudFormation
|
|
6732
6952
|
:status,
|
6733
6953
|
:creation_timestamp,
|
6734
6954
|
:end_timestamp)
|
6955
|
+
SENSITIVE = []
|
6735
6956
|
include Aws::Structure
|
6736
6957
|
end
|
6737
6958
|
|
@@ -6820,6 +7041,7 @@ module Aws::CloudFormation
|
|
6820
7041
|
:permission_model,
|
6821
7042
|
:drift_status,
|
6822
7043
|
:last_drift_check_timestamp)
|
7044
|
+
SENSITIVE = []
|
6823
7045
|
include Aws::Structure
|
6824
7046
|
end
|
6825
7047
|
|
@@ -6911,6 +7133,7 @@ module Aws::CloudFormation
|
|
6911
7133
|
:parent_id,
|
6912
7134
|
:root_id,
|
6913
7135
|
:drift_information)
|
7136
|
+
SENSITIVE = []
|
6914
7137
|
include Aws::Structure
|
6915
7138
|
end
|
6916
7139
|
|
@@ -6943,6 +7166,7 @@ module Aws::CloudFormation
|
|
6943
7166
|
class StopStackSetOperationInput < Struct.new(
|
6944
7167
|
:stack_set_name,
|
6945
7168
|
:operation_id)
|
7169
|
+
SENSITIVE = []
|
6946
7170
|
include Aws::Structure
|
6947
7171
|
end
|
6948
7172
|
|
@@ -6977,6 +7201,7 @@ module Aws::CloudFormation
|
|
6977
7201
|
class Tag < Struct.new(
|
6978
7202
|
:key,
|
6979
7203
|
:value)
|
7204
|
+
SENSITIVE = []
|
6980
7205
|
include Aws::Structure
|
6981
7206
|
end
|
6982
7207
|
|
@@ -7006,6 +7231,7 @@ module Aws::CloudFormation
|
|
7006
7231
|
:default_value,
|
7007
7232
|
:no_echo,
|
7008
7233
|
:description)
|
7234
|
+
SENSITIVE = []
|
7009
7235
|
include Aws::Structure
|
7010
7236
|
end
|
7011
7237
|
|
@@ -7059,6 +7285,7 @@ module Aws::CloudFormation
|
|
7059
7285
|
:type_arn,
|
7060
7286
|
:last_updated,
|
7061
7287
|
:description)
|
7288
|
+
SENSITIVE = []
|
7062
7289
|
include Aws::Structure
|
7063
7290
|
end
|
7064
7291
|
|
@@ -7105,6 +7332,7 @@ module Aws::CloudFormation
|
|
7105
7332
|
:arn,
|
7106
7333
|
:time_created,
|
7107
7334
|
:description)
|
7335
|
+
SENSITIVE = []
|
7108
7336
|
include Aws::Structure
|
7109
7337
|
end
|
7110
7338
|
|
@@ -7438,6 +7666,7 @@ module Aws::CloudFormation
|
|
7438
7666
|
:notification_arns,
|
7439
7667
|
:tags,
|
7440
7668
|
:client_request_token)
|
7669
|
+
SENSITIVE = []
|
7441
7670
|
include Aws::Structure
|
7442
7671
|
end
|
7443
7672
|
|
@@ -7579,6 +7808,7 @@ module Aws::CloudFormation
|
|
7579
7808
|
:parameter_overrides,
|
7580
7809
|
:operation_preferences,
|
7581
7810
|
:operation_id)
|
7811
|
+
SENSITIVE = []
|
7582
7812
|
include Aws::Structure
|
7583
7813
|
end
|
7584
7814
|
|
@@ -7590,6 +7820,7 @@ module Aws::CloudFormation
|
|
7590
7820
|
#
|
7591
7821
|
class UpdateStackInstancesOutput < Struct.new(
|
7592
7822
|
:operation_id)
|
7823
|
+
SENSITIVE = []
|
7593
7824
|
include Aws::Structure
|
7594
7825
|
end
|
7595
7826
|
|
@@ -7603,6 +7834,7 @@ module Aws::CloudFormation
|
|
7603
7834
|
#
|
7604
7835
|
class UpdateStackOutput < Struct.new(
|
7605
7836
|
:stack_id)
|
7837
|
+
SENSITIVE = []
|
7606
7838
|
include Aws::Structure
|
7607
7839
|
end
|
7608
7840
|
|
@@ -7982,6 +8214,7 @@ module Aws::CloudFormation
|
|
7982
8214
|
:operation_id,
|
7983
8215
|
:accounts,
|
7984
8216
|
:regions)
|
8217
|
+
SENSITIVE = []
|
7985
8218
|
include Aws::Structure
|
7986
8219
|
end
|
7987
8220
|
|
@@ -7993,6 +8226,7 @@ module Aws::CloudFormation
|
|
7993
8226
|
#
|
7994
8227
|
class UpdateStackSetOutput < Struct.new(
|
7995
8228
|
:operation_id)
|
8229
|
+
SENSITIVE = []
|
7996
8230
|
include Aws::Structure
|
7997
8231
|
end
|
7998
8232
|
|
@@ -8018,6 +8252,7 @@ module Aws::CloudFormation
|
|
8018
8252
|
class UpdateTerminationProtectionInput < Struct.new(
|
8019
8253
|
:enable_termination_protection,
|
8020
8254
|
:stack_name)
|
8255
|
+
SENSITIVE = []
|
8021
8256
|
include Aws::Structure
|
8022
8257
|
end
|
8023
8258
|
|
@@ -8029,6 +8264,7 @@ module Aws::CloudFormation
|
|
8029
8264
|
#
|
8030
8265
|
class UpdateTerminationProtectionOutput < Struct.new(
|
8031
8266
|
:stack_id)
|
8267
|
+
SENSITIVE = []
|
8032
8268
|
include Aws::Structure
|
8033
8269
|
end
|
8034
8270
|
|
@@ -8074,6 +8310,7 @@ module Aws::CloudFormation
|
|
8074
8310
|
class ValidateTemplateInput < Struct.new(
|
8075
8311
|
:template_body,
|
8076
8312
|
:template_url)
|
8313
|
+
SENSITIVE = []
|
8077
8314
|
include Aws::Structure
|
8078
8315
|
end
|
8079
8316
|
|
@@ -8119,6 +8356,7 @@ module Aws::CloudFormation
|
|
8119
8356
|
:capabilities,
|
8120
8357
|
:capabilities_reason,
|
8121
8358
|
:declared_transforms)
|
8359
|
+
SENSITIVE = []
|
8122
8360
|
include Aws::Structure
|
8123
8361
|
end
|
8124
8362
|
|