aws-sdk-cloudformation 1.98.0 → 1.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +1142 -112
- data/lib/aws-sdk-cloudformation/client_api.rb +406 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +154 -0
- data/lib/aws-sdk-cloudformation/errors.rb +55 -0
- data/lib/aws-sdk-cloudformation/event.rb +24 -0
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +22 -0
- data/lib/aws-sdk-cloudformation/resource.rb +16 -14
- data/lib/aws-sdk-cloudformation/stack.rb +49 -28
- data/lib/aws-sdk-cloudformation/types.rb +1372 -169
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/sig/client.rbs +172 -0
- data/sig/errors.rbs +10 -0
- data/sig/event.rbs +3 -0
- data/sig/stack.rbs +3 -0
- data/sig/types.rbs +244 -1
- metadata +2 -2
@@ -96,6 +96,20 @@ module Aws::CloudFormation
|
|
96
96
|
end
|
97
97
|
end
|
98
98
|
|
99
|
+
class CreateGeneratedTemplate
|
100
|
+
def self.build(context)
|
101
|
+
unless context.config.regional_endpoint
|
102
|
+
endpoint = context.config.endpoint.to_s
|
103
|
+
end
|
104
|
+
Aws::CloudFormation::EndpointParameters.new(
|
105
|
+
region: context.config.region,
|
106
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
107
|
+
use_fips: context.config.use_fips_endpoint,
|
108
|
+
endpoint: endpoint,
|
109
|
+
)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
99
113
|
class CreateStack
|
100
114
|
def self.build(context)
|
101
115
|
unless context.config.regional_endpoint
|
@@ -180,6 +194,20 @@ module Aws::CloudFormation
|
|
180
194
|
end
|
181
195
|
end
|
182
196
|
|
197
|
+
class DeleteGeneratedTemplate
|
198
|
+
def self.build(context)
|
199
|
+
unless context.config.regional_endpoint
|
200
|
+
endpoint = context.config.endpoint.to_s
|
201
|
+
end
|
202
|
+
Aws::CloudFormation::EndpointParameters.new(
|
203
|
+
region: context.config.region,
|
204
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
205
|
+
use_fips: context.config.use_fips_endpoint,
|
206
|
+
endpoint: endpoint,
|
207
|
+
)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
183
211
|
class DeleteStack
|
184
212
|
def self.build(context)
|
185
213
|
unless context.config.regional_endpoint
|
@@ -278,6 +306,20 @@ module Aws::CloudFormation
|
|
278
306
|
end
|
279
307
|
end
|
280
308
|
|
309
|
+
class DescribeGeneratedTemplate
|
310
|
+
def self.build(context)
|
311
|
+
unless context.config.regional_endpoint
|
312
|
+
endpoint = context.config.endpoint.to_s
|
313
|
+
end
|
314
|
+
Aws::CloudFormation::EndpointParameters.new(
|
315
|
+
region: context.config.region,
|
316
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
317
|
+
use_fips: context.config.use_fips_endpoint,
|
318
|
+
endpoint: endpoint,
|
319
|
+
)
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
281
323
|
class DescribeOrganizationsAccess
|
282
324
|
def self.build(context)
|
283
325
|
unless context.config.regional_endpoint
|
@@ -306,6 +348,20 @@ module Aws::CloudFormation
|
|
306
348
|
end
|
307
349
|
end
|
308
350
|
|
351
|
+
class DescribeResourceScan
|
352
|
+
def self.build(context)
|
353
|
+
unless context.config.regional_endpoint
|
354
|
+
endpoint = context.config.endpoint.to_s
|
355
|
+
end
|
356
|
+
Aws::CloudFormation::EndpointParameters.new(
|
357
|
+
region: context.config.region,
|
358
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
359
|
+
use_fips: context.config.use_fips_endpoint,
|
360
|
+
endpoint: endpoint,
|
361
|
+
)
|
362
|
+
end
|
363
|
+
end
|
364
|
+
|
309
365
|
class DescribeStackDriftDetectionStatus
|
310
366
|
def self.build(context)
|
311
367
|
unless context.config.regional_endpoint
|
@@ -530,6 +586,20 @@ module Aws::CloudFormation
|
|
530
586
|
end
|
531
587
|
end
|
532
588
|
|
589
|
+
class GetGeneratedTemplate
|
590
|
+
def self.build(context)
|
591
|
+
unless context.config.regional_endpoint
|
592
|
+
endpoint = context.config.endpoint.to_s
|
593
|
+
end
|
594
|
+
Aws::CloudFormation::EndpointParameters.new(
|
595
|
+
region: context.config.region,
|
596
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
597
|
+
use_fips: context.config.use_fips_endpoint,
|
598
|
+
endpoint: endpoint,
|
599
|
+
)
|
600
|
+
end
|
601
|
+
end
|
602
|
+
|
533
603
|
class GetStackPolicy
|
534
604
|
def self.build(context)
|
535
605
|
unless context.config.regional_endpoint
|
@@ -614,6 +684,20 @@ module Aws::CloudFormation
|
|
614
684
|
end
|
615
685
|
end
|
616
686
|
|
687
|
+
class ListGeneratedTemplates
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::CloudFormation::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
617
701
|
class ListImports
|
618
702
|
def self.build(context)
|
619
703
|
unless context.config.regional_endpoint
|
@@ -628,6 +712,48 @@ module Aws::CloudFormation
|
|
628
712
|
end
|
629
713
|
end
|
630
714
|
|
715
|
+
class ListResourceScanRelatedResources
|
716
|
+
def self.build(context)
|
717
|
+
unless context.config.regional_endpoint
|
718
|
+
endpoint = context.config.endpoint.to_s
|
719
|
+
end
|
720
|
+
Aws::CloudFormation::EndpointParameters.new(
|
721
|
+
region: context.config.region,
|
722
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
723
|
+
use_fips: context.config.use_fips_endpoint,
|
724
|
+
endpoint: endpoint,
|
725
|
+
)
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
729
|
+
class ListResourceScanResources
|
730
|
+
def self.build(context)
|
731
|
+
unless context.config.regional_endpoint
|
732
|
+
endpoint = context.config.endpoint.to_s
|
733
|
+
end
|
734
|
+
Aws::CloudFormation::EndpointParameters.new(
|
735
|
+
region: context.config.region,
|
736
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
737
|
+
use_fips: context.config.use_fips_endpoint,
|
738
|
+
endpoint: endpoint,
|
739
|
+
)
|
740
|
+
end
|
741
|
+
end
|
742
|
+
|
743
|
+
class ListResourceScans
|
744
|
+
def self.build(context)
|
745
|
+
unless context.config.regional_endpoint
|
746
|
+
endpoint = context.config.endpoint.to_s
|
747
|
+
end
|
748
|
+
Aws::CloudFormation::EndpointParameters.new(
|
749
|
+
region: context.config.region,
|
750
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
751
|
+
use_fips: context.config.use_fips_endpoint,
|
752
|
+
endpoint: endpoint,
|
753
|
+
)
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
631
757
|
class ListStackInstanceResourceDrifts
|
632
758
|
def self.build(context)
|
633
759
|
unless context.config.regional_endpoint
|
@@ -894,6 +1020,20 @@ module Aws::CloudFormation
|
|
894
1020
|
end
|
895
1021
|
end
|
896
1022
|
|
1023
|
+
class StartResourceScan
|
1024
|
+
def self.build(context)
|
1025
|
+
unless context.config.regional_endpoint
|
1026
|
+
endpoint = context.config.endpoint.to_s
|
1027
|
+
end
|
1028
|
+
Aws::CloudFormation::EndpointParameters.new(
|
1029
|
+
region: context.config.region,
|
1030
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1031
|
+
use_fips: context.config.use_fips_endpoint,
|
1032
|
+
endpoint: endpoint,
|
1033
|
+
)
|
1034
|
+
end
|
1035
|
+
end
|
1036
|
+
|
897
1037
|
class StopStackSetOperation
|
898
1038
|
def self.build(context)
|
899
1039
|
unless context.config.regional_endpoint
|
@@ -922,6 +1062,20 @@ module Aws::CloudFormation
|
|
922
1062
|
end
|
923
1063
|
end
|
924
1064
|
|
1065
|
+
class UpdateGeneratedTemplate
|
1066
|
+
def self.build(context)
|
1067
|
+
unless context.config.regional_endpoint
|
1068
|
+
endpoint = context.config.endpoint.to_s
|
1069
|
+
end
|
1070
|
+
Aws::CloudFormation::EndpointParameters.new(
|
1071
|
+
region: context.config.region,
|
1072
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1073
|
+
use_fips: context.config.use_fips_endpoint,
|
1074
|
+
endpoint: endpoint,
|
1075
|
+
)
|
1076
|
+
end
|
1077
|
+
end
|
1078
|
+
|
925
1079
|
class UpdateStack
|
926
1080
|
def self.build(context)
|
927
1081
|
unless context.config.regional_endpoint
|
@@ -30,7 +30,9 @@ module Aws::CloudFormation
|
|
30
30
|
# * {AlreadyExistsException}
|
31
31
|
# * {CFNRegistryException}
|
32
32
|
# * {ChangeSetNotFoundException}
|
33
|
+
# * {ConcurrentResourcesLimitExceededException}
|
33
34
|
# * {CreatedButModifiedException}
|
35
|
+
# * {GeneratedTemplateNotFoundException}
|
34
36
|
# * {InsufficientCapabilitiesException}
|
35
37
|
# * {InvalidChangeSetStatusException}
|
36
38
|
# * {InvalidOperationException}
|
@@ -41,6 +43,9 @@ module Aws::CloudFormation
|
|
41
43
|
# * {OperationInProgressException}
|
42
44
|
# * {OperationNotFoundException}
|
43
45
|
# * {OperationStatusCheckFailedException}
|
46
|
+
# * {ResourceScanInProgressException}
|
47
|
+
# * {ResourceScanLimitExceededException}
|
48
|
+
# * {ResourceScanNotFoundException}
|
44
49
|
# * {StackInstanceNotFoundException}
|
45
50
|
# * {StackNotFoundException}
|
46
51
|
# * {StackSetNotEmptyException}
|
@@ -91,6 +96,16 @@ module Aws::CloudFormation
|
|
91
96
|
end
|
92
97
|
end
|
93
98
|
|
99
|
+
class ConcurrentResourcesLimitExceededException < ServiceError
|
100
|
+
|
101
|
+
# @param [Seahorse::Client::RequestContext] context
|
102
|
+
# @param [String] message
|
103
|
+
# @param [Aws::CloudFormation::Types::ConcurrentResourcesLimitExceededException] data
|
104
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
105
|
+
super(context, message, data)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
94
109
|
class CreatedButModifiedException < ServiceError
|
95
110
|
|
96
111
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -101,6 +116,16 @@ module Aws::CloudFormation
|
|
101
116
|
end
|
102
117
|
end
|
103
118
|
|
119
|
+
class GeneratedTemplateNotFoundException < ServiceError
|
120
|
+
|
121
|
+
# @param [Seahorse::Client::RequestContext] context
|
122
|
+
# @param [String] message
|
123
|
+
# @param [Aws::CloudFormation::Types::GeneratedTemplateNotFoundException] data
|
124
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
125
|
+
super(context, message, data)
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
104
129
|
class InsufficientCapabilitiesException < ServiceError
|
105
130
|
|
106
131
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -201,6 +226,36 @@ module Aws::CloudFormation
|
|
201
226
|
end
|
202
227
|
end
|
203
228
|
|
229
|
+
class ResourceScanInProgressException < ServiceError
|
230
|
+
|
231
|
+
# @param [Seahorse::Client::RequestContext] context
|
232
|
+
# @param [String] message
|
233
|
+
# @param [Aws::CloudFormation::Types::ResourceScanInProgressException] data
|
234
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
235
|
+
super(context, message, data)
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
class ResourceScanLimitExceededException < ServiceError
|
240
|
+
|
241
|
+
# @param [Seahorse::Client::RequestContext] context
|
242
|
+
# @param [String] message
|
243
|
+
# @param [Aws::CloudFormation::Types::ResourceScanLimitExceededException] data
|
244
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
245
|
+
super(context, message, data)
|
246
|
+
end
|
247
|
+
end
|
248
|
+
|
249
|
+
class ResourceScanNotFoundException < ServiceError
|
250
|
+
|
251
|
+
# @param [Seahorse::Client::RequestContext] context
|
252
|
+
# @param [String] message
|
253
|
+
# @param [Aws::CloudFormation::Types::ResourceScanNotFoundException] data
|
254
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
255
|
+
super(context, message, data)
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
204
259
|
class StackInstanceNotFoundException < ServiceError
|
205
260
|
|
206
261
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -151,6 +151,30 @@ module Aws::CloudFormation
|
|
151
151
|
data[:hook_failure_mode]
|
152
152
|
end
|
153
153
|
|
154
|
+
# An optional field containing information about the detailed status of
|
155
|
+
# the stack event.
|
156
|
+
#
|
157
|
+
# * `CONFIGURATION_COMPLETE` - all of the resources in the stack have
|
158
|
+
# reached that event. For more information, see [CloudFormation stack
|
159
|
+
# deployment][1] in the *CloudFormation User Guide*.
|
160
|
+
#
|
161
|
+
# ^
|
162
|
+
# ^
|
163
|
+
#
|
164
|
+
# * `VALIDATION_FAILED` - template validation failed because of invalid
|
165
|
+
# properties in the template. The `ResourceStatusReason` field shows
|
166
|
+
# what properties are defined incorrectly.
|
167
|
+
#
|
168
|
+
# ^
|
169
|
+
#
|
170
|
+
#
|
171
|
+
#
|
172
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
|
173
|
+
# @return [String]
|
174
|
+
def detailed_status
|
175
|
+
data[:detailed_status]
|
176
|
+
end
|
177
|
+
|
154
178
|
# @!endgroup
|
155
179
|
|
156
180
|
# @return [Client]
|
@@ -70,6 +70,8 @@ module Aws::CloudFormation
|
|
70
70
|
Aws::CloudFormation::Endpoints::ContinueUpdateRollback.build(context)
|
71
71
|
when :create_change_set
|
72
72
|
Aws::CloudFormation::Endpoints::CreateChangeSet.build(context)
|
73
|
+
when :create_generated_template
|
74
|
+
Aws::CloudFormation::Endpoints::CreateGeneratedTemplate.build(context)
|
73
75
|
when :create_stack
|
74
76
|
Aws::CloudFormation::Endpoints::CreateStack.build(context)
|
75
77
|
when :create_stack_instances
|
@@ -82,6 +84,8 @@ module Aws::CloudFormation
|
|
82
84
|
Aws::CloudFormation::Endpoints::DeactivateType.build(context)
|
83
85
|
when :delete_change_set
|
84
86
|
Aws::CloudFormation::Endpoints::DeleteChangeSet.build(context)
|
87
|
+
when :delete_generated_template
|
88
|
+
Aws::CloudFormation::Endpoints::DeleteGeneratedTemplate.build(context)
|
85
89
|
when :delete_stack
|
86
90
|
Aws::CloudFormation::Endpoints::DeleteStack.build(context)
|
87
91
|
when :delete_stack_instances
|
@@ -96,10 +100,14 @@ module Aws::CloudFormation
|
|
96
100
|
Aws::CloudFormation::Endpoints::DescribeChangeSet.build(context)
|
97
101
|
when :describe_change_set_hooks
|
98
102
|
Aws::CloudFormation::Endpoints::DescribeChangeSetHooks.build(context)
|
103
|
+
when :describe_generated_template
|
104
|
+
Aws::CloudFormation::Endpoints::DescribeGeneratedTemplate.build(context)
|
99
105
|
when :describe_organizations_access
|
100
106
|
Aws::CloudFormation::Endpoints::DescribeOrganizationsAccess.build(context)
|
101
107
|
when :describe_publisher
|
102
108
|
Aws::CloudFormation::Endpoints::DescribePublisher.build(context)
|
109
|
+
when :describe_resource_scan
|
110
|
+
Aws::CloudFormation::Endpoints::DescribeResourceScan.build(context)
|
103
111
|
when :describe_stack_drift_detection_status
|
104
112
|
Aws::CloudFormation::Endpoints::DescribeStackDriftDetectionStatus.build(context)
|
105
113
|
when :describe_stack_events
|
@@ -132,6 +140,8 @@ module Aws::CloudFormation
|
|
132
140
|
Aws::CloudFormation::Endpoints::EstimateTemplateCost.build(context)
|
133
141
|
when :execute_change_set
|
134
142
|
Aws::CloudFormation::Endpoints::ExecuteChangeSet.build(context)
|
143
|
+
when :get_generated_template
|
144
|
+
Aws::CloudFormation::Endpoints::GetGeneratedTemplate.build(context)
|
135
145
|
when :get_stack_policy
|
136
146
|
Aws::CloudFormation::Endpoints::GetStackPolicy.build(context)
|
137
147
|
when :get_template
|
@@ -144,8 +154,16 @@ module Aws::CloudFormation
|
|
144
154
|
Aws::CloudFormation::Endpoints::ListChangeSets.build(context)
|
145
155
|
when :list_exports
|
146
156
|
Aws::CloudFormation::Endpoints::ListExports.build(context)
|
157
|
+
when :list_generated_templates
|
158
|
+
Aws::CloudFormation::Endpoints::ListGeneratedTemplates.build(context)
|
147
159
|
when :list_imports
|
148
160
|
Aws::CloudFormation::Endpoints::ListImports.build(context)
|
161
|
+
when :list_resource_scan_related_resources
|
162
|
+
Aws::CloudFormation::Endpoints::ListResourceScanRelatedResources.build(context)
|
163
|
+
when :list_resource_scan_resources
|
164
|
+
Aws::CloudFormation::Endpoints::ListResourceScanResources.build(context)
|
165
|
+
when :list_resource_scans
|
166
|
+
Aws::CloudFormation::Endpoints::ListResourceScans.build(context)
|
149
167
|
when :list_stack_instance_resource_drifts
|
150
168
|
Aws::CloudFormation::Endpoints::ListStackInstanceResourceDrifts.build(context)
|
151
169
|
when :list_stack_instances
|
@@ -184,10 +202,14 @@ module Aws::CloudFormation
|
|
184
202
|
Aws::CloudFormation::Endpoints::SetTypeDefaultVersion.build(context)
|
185
203
|
when :signal_resource
|
186
204
|
Aws::CloudFormation::Endpoints::SignalResource.build(context)
|
205
|
+
when :start_resource_scan
|
206
|
+
Aws::CloudFormation::Endpoints::StartResourceScan.build(context)
|
187
207
|
when :stop_stack_set_operation
|
188
208
|
Aws::CloudFormation::Endpoints::StopStackSetOperation.build(context)
|
189
209
|
when :test_type
|
190
210
|
Aws::CloudFormation::Endpoints::TestType.build(context)
|
211
|
+
when :update_generated_template
|
212
|
+
Aws::CloudFormation::Endpoints::UpdateGeneratedTemplate.build(context)
|
191
213
|
when :update_stack
|
192
214
|
Aws::CloudFormation::Endpoints::UpdateStack.build(context)
|
193
215
|
when :update_stack_instances
|
@@ -102,7 +102,8 @@ module Aws::CloudFormation
|
|
102
102
|
# Location of file containing the template body. The URL must point to a
|
103
103
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
104
104
|
# bucket or a Systems Manager document. For more information, go to the
|
105
|
-
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
105
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*. The location
|
106
|
+
# for an Amazon S3 bucket must start with `https://`.
|
106
107
|
#
|
107
108
|
# Conditional: You must specify either the `TemplateBody` or the
|
108
109
|
# `TemplateURL` parameter, but not both.
|
@@ -112,7 +113,7 @@ module Aws::CloudFormation
|
|
112
113
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
113
114
|
# @option options [Array<Types::Parameter>] :parameters
|
114
115
|
# A list of `Parameter` structures that specify input parameters for the
|
115
|
-
# stack. For more information, see the [Parameter][1] data type.
|
116
|
+
# stack. For more information, see the [ `Parameter` ][1] data type.
|
116
117
|
#
|
117
118
|
#
|
118
119
|
#
|
@@ -129,7 +130,7 @@ module Aws::CloudFormation
|
|
129
130
|
# period afterwards.
|
130
131
|
# @option options [Integer] :timeout_in_minutes
|
131
132
|
# The amount of time that can pass before the stack status becomes
|
132
|
-
#
|
133
|
+
# `CREATE_FAILED`; if `DisableRollback` is not set or is set to `false`,
|
133
134
|
# the stack will be rolled back.
|
134
135
|
# @option options [Array<String>] :notification_arns
|
135
136
|
# The Amazon Simple Notification Service (Amazon SNS) topic ARNs to
|
@@ -163,19 +164,19 @@ module Aws::CloudFormation
|
|
163
164
|
# you review all permissions associated with them and edit their
|
164
165
|
# permissions if necessary.
|
165
166
|
#
|
166
|
-
# * [ AWS::IAM::AccessKey][1]
|
167
|
+
# * [ `AWS::IAM::AccessKey` AWS::IAM::AccessKey][1]
|
167
168
|
#
|
168
|
-
# * [ AWS::IAM::Group][2]
|
169
|
+
# * [ `AWS::IAM::Group` ][2]
|
169
170
|
#
|
170
|
-
# * [AWS::IAM::InstanceProfile][3]
|
171
|
+
# * [ `AWS::IAM::InstanceProfile` ][3]
|
171
172
|
#
|
172
|
-
# * [ AWS::IAM::Policy][4]
|
173
|
+
# * [ `AWS::IAM::Policy` ][4]
|
173
174
|
#
|
174
|
-
# * [ AWS::IAM::Role][5]
|
175
|
+
# * [ `AWS::IAM::Role` ][5]
|
175
176
|
#
|
176
|
-
# * [ AWS::IAM::User][6]
|
177
|
+
# * [ `AWS::IAM::User` ][6]
|
177
178
|
#
|
178
|
-
# * [AWS::IAM::UserToGroupAddition][7]
|
179
|
+
# * [ `AWS::IAM::UserToGroupAddition` ][7]
|
179
180
|
#
|
180
181
|
# For more information, see [Acknowledging IAM Resources in
|
181
182
|
# CloudFormation Templates][8].
|
@@ -191,8 +192,8 @@ module Aws::CloudFormation
|
|
191
192
|
# your stack template contains one or more macros, and you choose to
|
192
193
|
# create a stack directly from the processed template, without first
|
193
194
|
# reviewing the resulting changes in a change set, you must
|
194
|
-
# acknowledge this capability. This includes the [AWS::Include][9]
|
195
|
-
# [AWS::Serverless][10] transforms, which are macros hosted by
|
195
|
+
# acknowledge this capability. This includes the [ `AWS::Include` ][9]
|
196
|
+
# and [ `AWS::Serverless` ][10] transforms, which are macros hosted by
|
196
197
|
# CloudFormation.
|
197
198
|
#
|
198
199
|
# If you want to create a stack from a stack template that contains
|
@@ -285,8 +286,9 @@ module Aws::CloudFormation
|
|
285
286
|
# @option options [String] :stack_policy_url
|
286
287
|
# Location of a file containing the stack policy. The URL must point to
|
287
288
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
288
|
-
# Region as the stack.
|
289
|
-
# the `
|
289
|
+
# Region as the stack. The location for an Amazon S3 bucket must start
|
290
|
+
# with `https://`. You can specify either the `StackPolicyBody` or the
|
291
|
+
# `StackPolicyURL` parameter, but not both.
|
290
292
|
# @option options [Array<Types::Tag>] :tags
|
291
293
|
# Key-value pairs to associate with this stack. CloudFormation also
|
292
294
|
# propagates these tags to the resources created in the stack. A maximum
|
@@ -218,6 +218,22 @@ module Aws::CloudFormation
|
|
218
218
|
data[:retain_except_on_create]
|
219
219
|
end
|
220
220
|
|
221
|
+
# The detailed status of the resource or stack. If
|
222
|
+
# `CONFIGURATION_COMPLETE` is present, the resource or resource
|
223
|
+
# configuration phase has completed and the stabilization of the
|
224
|
+
# resources is in progress. The stack sets `CONFIGURATION_COMPLETE` when
|
225
|
+
# all of the resources in the stack have reached that event. For more
|
226
|
+
# information, see [CloudFormation stack deployment][1] in the
|
227
|
+
# *CloudFormation User Guide*.
|
228
|
+
#
|
229
|
+
#
|
230
|
+
#
|
231
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
|
232
|
+
# @return [String]
|
233
|
+
def detailed_status
|
234
|
+
data[:detailed_status]
|
235
|
+
end
|
236
|
+
|
221
237
|
# @!endgroup
|
222
238
|
|
223
239
|
# @return [Client]
|
@@ -467,7 +483,8 @@ module Aws::CloudFormation
|
|
467
483
|
# Location of file containing the template body. The URL must point to a
|
468
484
|
# template (max size: 460,800 bytes) that's located in an Amazon S3
|
469
485
|
# bucket or a Systems Manager document. For more information, go to the
|
470
|
-
# [Template anatomy][1] in the *CloudFormation User Guide*.
|
486
|
+
# [Template anatomy][1] in the *CloudFormation User Guide*. The location
|
487
|
+
# for an Amazon S3 bucket must start with `https://`.
|
471
488
|
#
|
472
489
|
# Conditional: You must specify either the `TemplateBody` or the
|
473
490
|
# `TemplateURL` parameter, but not both.
|
@@ -477,7 +494,7 @@ module Aws::CloudFormation
|
|
477
494
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
478
495
|
# @option options [Array<Types::Parameter>] :parameters
|
479
496
|
# A list of `Parameter` structures that specify input parameters for the
|
480
|
-
# stack. For more information, see the [Parameter][1] data type.
|
497
|
+
# stack. For more information, see the [ `Parameter` ][1] data type.
|
481
498
|
#
|
482
499
|
#
|
483
500
|
#
|
@@ -494,7 +511,7 @@ module Aws::CloudFormation
|
|
494
511
|
# period afterwards.
|
495
512
|
# @option options [Integer] :timeout_in_minutes
|
496
513
|
# The amount of time that can pass before the stack status becomes
|
497
|
-
#
|
514
|
+
# `CREATE_FAILED`; if `DisableRollback` is not set or is set to `false`,
|
498
515
|
# the stack will be rolled back.
|
499
516
|
# @option options [Array<String>] :notification_arns
|
500
517
|
# The Amazon Simple Notification Service (Amazon SNS) topic ARNs to
|
@@ -528,19 +545,19 @@ module Aws::CloudFormation
|
|
528
545
|
# you review all permissions associated with them and edit their
|
529
546
|
# permissions if necessary.
|
530
547
|
#
|
531
|
-
# * [ AWS::IAM::AccessKey][1]
|
548
|
+
# * [ `AWS::IAM::AccessKey` AWS::IAM::AccessKey][1]
|
532
549
|
#
|
533
|
-
# * [ AWS::IAM::Group][2]
|
550
|
+
# * [ `AWS::IAM::Group` ][2]
|
534
551
|
#
|
535
|
-
# * [AWS::IAM::InstanceProfile][3]
|
552
|
+
# * [ `AWS::IAM::InstanceProfile` ][3]
|
536
553
|
#
|
537
|
-
# * [ AWS::IAM::Policy][4]
|
554
|
+
# * [ `AWS::IAM::Policy` ][4]
|
538
555
|
#
|
539
|
-
# * [ AWS::IAM::Role][5]
|
556
|
+
# * [ `AWS::IAM::Role` ][5]
|
540
557
|
#
|
541
|
-
# * [ AWS::IAM::User][6]
|
558
|
+
# * [ `AWS::IAM::User` ][6]
|
542
559
|
#
|
543
|
-
# * [AWS::IAM::UserToGroupAddition][7]
|
560
|
+
# * [ `AWS::IAM::UserToGroupAddition` ][7]
|
544
561
|
#
|
545
562
|
# For more information, see [Acknowledging IAM Resources in
|
546
563
|
# CloudFormation Templates][8].
|
@@ -556,8 +573,8 @@ module Aws::CloudFormation
|
|
556
573
|
# your stack template contains one or more macros, and you choose to
|
557
574
|
# create a stack directly from the processed template, without first
|
558
575
|
# reviewing the resulting changes in a change set, you must
|
559
|
-
# acknowledge this capability. This includes the [AWS::Include][9]
|
560
|
-
# [AWS::Serverless][10] transforms, which are macros hosted by
|
576
|
+
# acknowledge this capability. This includes the [ `AWS::Include` ][9]
|
577
|
+
# and [ `AWS::Serverless` ][10] transforms, which are macros hosted by
|
561
578
|
# CloudFormation.
|
562
579
|
#
|
563
580
|
# If you want to create a stack from a stack template that contains
|
@@ -650,8 +667,9 @@ module Aws::CloudFormation
|
|
650
667
|
# @option options [String] :stack_policy_url
|
651
668
|
# Location of a file containing the stack policy. The URL must point to
|
652
669
|
# a policy (maximum size: 16 KB) located in an S3 bucket in the same
|
653
|
-
# Region as the stack.
|
654
|
-
# the `
|
670
|
+
# Region as the stack. The location for an Amazon S3 bucket must start
|
671
|
+
# with `https://`. You can specify either the `StackPolicyBody` or the
|
672
|
+
# `StackPolicyURL` parameter, but not both.
|
655
673
|
# @option options [Array<Types::Tag>] :tags
|
656
674
|
# Key-value pairs to associate with this stack. CloudFormation also
|
657
675
|
# propagates these tags to the resources created in the stack. A maximum
|
@@ -819,7 +837,8 @@ module Aws::CloudFormation
|
|
819
837
|
# Location of file containing the template body. The URL must point to a
|
820
838
|
# template that's located in an Amazon S3 bucket or a Systems Manager
|
821
839
|
# document. For more information, go to [Template Anatomy][1] in the
|
822
|
-
# *CloudFormation User Guide*.
|
840
|
+
# *CloudFormation User Guide*. The location for an Amazon S3 bucket must
|
841
|
+
# start with `https://`.
|
823
842
|
#
|
824
843
|
# Conditional: You must specify only one of the following parameters:
|
825
844
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -847,7 +866,8 @@ module Aws::CloudFormation
|
|
847
866
|
# @option options [String] :stack_policy_during_update_url
|
848
867
|
# Location of a file containing the temporary overriding stack policy.
|
849
868
|
# The URL must point to a policy (max size: 16KB) located in an S3
|
850
|
-
# bucket in the same Region as the stack.
|
869
|
+
# bucket in the same Region as the stack. The location for an Amazon S3
|
870
|
+
# bucket must start with `https://`. You can specify either the
|
851
871
|
# `StackPolicyDuringUpdateBody` or the `StackPolicyDuringUpdateURL`
|
852
872
|
# parameter, but not both.
|
853
873
|
#
|
@@ -857,7 +877,7 @@ module Aws::CloudFormation
|
|
857
877
|
# will be used.
|
858
878
|
# @option options [Array<Types::Parameter>] :parameters
|
859
879
|
# A list of `Parameter` structures that specify input parameters for the
|
860
|
-
# stack. For more information, see the [Parameter][1] data type.
|
880
|
+
# stack. For more information, see the [ `Parameter` ][1] data type.
|
861
881
|
#
|
862
882
|
#
|
863
883
|
#
|
@@ -890,19 +910,19 @@ module Aws::CloudFormation
|
|
890
910
|
# review all permissions associated with them and edit their
|
891
911
|
# permissions if necessary.
|
892
912
|
#
|
893
|
-
# * [ AWS::IAM::AccessKey][1]
|
913
|
+
# * [ `AWS::IAM::AccessKey` ][1]
|
894
914
|
#
|
895
|
-
# * [ AWS::IAM::Group][2]
|
915
|
+
# * [ `AWS::IAM::Group` ][2]
|
896
916
|
#
|
897
|
-
# * [AWS::IAM::InstanceProfile][3]
|
917
|
+
# * [ `AWS::IAM::InstanceProfile` ][3]
|
898
918
|
#
|
899
|
-
# * [ AWS::IAM::Policy][4]
|
919
|
+
# * [ ` AWS::IAM::Policy` ][4]
|
900
920
|
#
|
901
|
-
# * [ AWS::IAM::Role][5]
|
921
|
+
# * [ `AWS::IAM::Role` ][5]
|
902
922
|
#
|
903
|
-
# * [ AWS::IAM::User][6]
|
923
|
+
# * [ `AWS::IAM::User` ][6]
|
904
924
|
#
|
905
|
-
# * [AWS::IAM::UserToGroupAddition][7]
|
925
|
+
# * [ `AWS::IAM::UserToGroupAddition` ][7]
|
906
926
|
#
|
907
927
|
# For more information, see [Acknowledging IAM Resources in
|
908
928
|
# CloudFormation Templates][8].
|
@@ -918,8 +938,8 @@ module Aws::CloudFormation
|
|
918
938
|
# your stack template contains one or more macros, and you choose to
|
919
939
|
# update a stack directly from the processed template, without first
|
920
940
|
# reviewing the resulting changes in a change set, you must
|
921
|
-
# acknowledge this capability. This includes the [AWS::Include][9]
|
922
|
-
# [AWS::Serverless][10] transforms, which are macros hosted by
|
941
|
+
# acknowledge this capability. This includes the [ `AWS::Include` ][9]
|
942
|
+
# and [ `AWS::Serverless` ][10] transforms, which are macros hosted by
|
923
943
|
# CloudFormation.
|
924
944
|
#
|
925
945
|
# If you want to update a stack from a stack template that contains
|
@@ -1003,8 +1023,9 @@ module Aws::CloudFormation
|
|
1003
1023
|
# @option options [String] :stack_policy_url
|
1004
1024
|
# Location of a file containing the updated stack policy. The URL must
|
1005
1025
|
# point to a policy (max size: 16KB) located in an S3 bucket in the same
|
1006
|
-
# Region as the stack.
|
1007
|
-
# the `
|
1026
|
+
# Region as the stack. The location for an Amazon S3 bucket must start
|
1027
|
+
# with `https://`. You can specify either the `StackPolicyBody` or the
|
1028
|
+
# `StackPolicyURL` parameter, but not both.
|
1008
1029
|
#
|
1009
1030
|
# You might update the stack policy, for example, in order to protect a
|
1010
1031
|
# new resource that you created during a stack update. If you don't
|