aws-sdk-cloudformation 1.78.0 → 1.80.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 +208 -100
- data/lib/aws-sdk-cloudformation/client_api.rb +51 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +42 -0
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-cloudformation/resource.rb +15 -0
- data/lib/aws-sdk-cloudformation/stack.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +197 -89
- data/lib/aws-sdk-cloudformation.rb +2 -2
- metadata +2 -2
@@ -113,6 +113,16 @@ module Aws::CloudFormation
|
|
113
113
|
include Aws::Structure
|
114
114
|
end
|
115
115
|
|
116
|
+
# @api private
|
117
|
+
#
|
118
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateOrganizationsAccessInput AWS API Documentation
|
119
|
+
#
|
120
|
+
class ActivateOrganizationsAccessInput < Aws::EmptyStructure; end
|
121
|
+
|
122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateOrganizationsAccessOutput AWS API Documentation
|
123
|
+
#
|
124
|
+
class ActivateOrganizationsAccessOutput < Aws::EmptyStructure; end
|
125
|
+
|
116
126
|
# @!attribute [rw] type
|
117
127
|
# The extension type.
|
118
128
|
#
|
@@ -143,19 +153,19 @@ module Aws::CloudFormation
|
|
143
153
|
#
|
144
154
|
# @!attribute [rw] type_name_alias
|
145
155
|
# An alias to assign to the public extension, in this account and
|
146
|
-
#
|
156
|
+
# Region. If you specify an alias for the extension, CloudFormation
|
147
157
|
# treats the alias as the extension type name within this account and
|
148
|
-
#
|
158
|
+
# Region. You must use the alias to refer to the extension in your
|
149
159
|
# templates, API calls, and CloudFormation console.
|
150
160
|
#
|
151
|
-
# An extension alias must be unique within a given account and
|
161
|
+
# An extension alias must be unique within a given account and Region.
|
152
162
|
# You can activate the same public resource multiple times in the same
|
153
|
-
# account and
|
163
|
+
# account and Region, using different type name aliases.
|
154
164
|
# @return [String]
|
155
165
|
#
|
156
166
|
# @!attribute [rw] auto_update
|
157
167
|
# Whether to automatically update the extension in this account and
|
158
|
-
#
|
168
|
+
# Region when a new *minor* version is published by the extension
|
159
169
|
# publisher. Major versions released by the publisher must be manually
|
160
170
|
# updated.
|
161
171
|
#
|
@@ -210,7 +220,7 @@ module Aws::CloudFormation
|
|
210
220
|
|
211
221
|
# @!attribute [rw] arn
|
212
222
|
# The Amazon Resource Name (ARN) of the activated extension, in this
|
213
|
-
# account and
|
223
|
+
# account and Region.
|
214
224
|
# @return [String]
|
215
225
|
#
|
216
226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateTypeOutput AWS API Documentation
|
@@ -333,6 +343,19 @@ module Aws::CloudFormation
|
|
333
343
|
# The input for the CancelUpdateStack action.
|
334
344
|
#
|
335
345
|
# @!attribute [rw] stack_name
|
346
|
+
# <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
|
347
|
+
# response that describes all resources in the account.
|
348
|
+
#
|
349
|
+
# The IAM policy below can be added to IAM policies when you want to
|
350
|
+
# limit resource-level permissions and avoid returning a response when
|
351
|
+
# no parameter is sent in the request:
|
352
|
+
#
|
353
|
+
# `\{ "Version": "2012-10-17", "Statement": [\{ "Effect": "Deny",
|
354
|
+
# "Action": "cloudformation:DescribeStacks", "NotResource":
|
355
|
+
# "arn:aws:cloudformation:*:*:stack/*/*" \}] \}`
|
356
|
+
#
|
357
|
+
# </note>
|
358
|
+
#
|
336
359
|
# The name or the unique stack ID that's associated with the stack.
|
337
360
|
# @return [String]
|
338
361
|
#
|
@@ -653,7 +676,7 @@ module Aws::CloudFormation
|
|
653
676
|
# @!attribute [rw] client_request_token
|
654
677
|
# A unique identifier for this `ContinueUpdateRollback` request.
|
655
678
|
# Specify this token if you plan to retry requests so that
|
656
|
-
#
|
679
|
+
# CloudFormation knows that you're not attempting to continue the
|
657
680
|
# rollback to a stack with the same name. You might retry
|
658
681
|
# `ContinueUpdateRollback` requests to ensure that CloudFormation
|
659
682
|
# successfully received them.
|
@@ -883,7 +906,7 @@ module Aws::CloudFormation
|
|
883
906
|
#
|
884
907
|
# If you create a change set for a new stack, CloudFormation creates a
|
885
908
|
# stack with a unique stack ID, but no template or resources. The
|
886
|
-
# stack will be in the [
|
909
|
+
# stack will be in the [REVIEW\_IN\_PROGRESS][1] state until you
|
887
910
|
# execute the change set.
|
888
911
|
#
|
889
912
|
# By default, CloudFormation specifies `UPDATE`. You can't use the
|
@@ -1685,8 +1708,18 @@ module Aws::CloudFormation
|
|
1685
1708
|
#
|
1686
1709
|
class CreatedButModifiedException < Aws::EmptyStructure; end
|
1687
1710
|
|
1711
|
+
# @api private
|
1712
|
+
#
|
1713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeactivateOrganizationsAccessInput AWS API Documentation
|
1714
|
+
#
|
1715
|
+
class DeactivateOrganizationsAccessInput < Aws::EmptyStructure; end
|
1716
|
+
|
1717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeactivateOrganizationsAccessOutput AWS API Documentation
|
1718
|
+
#
|
1719
|
+
class DeactivateOrganizationsAccessOutput < Aws::EmptyStructure; end
|
1720
|
+
|
1688
1721
|
# @!attribute [rw] type_name
|
1689
|
-
# The type name of the extension, in this account and
|
1722
|
+
# The type name of the extension, in this account and Region. If you
|
1690
1723
|
# specified a type name alias when enabling the extension, use the
|
1691
1724
|
# type name alias.
|
1692
1725
|
#
|
@@ -1703,7 +1736,7 @@ module Aws::CloudFormation
|
|
1703
1736
|
#
|
1704
1737
|
# @!attribute [rw] arn
|
1705
1738
|
# The Amazon Resource Name (ARN) for the extension, in this account
|
1706
|
-
# and
|
1739
|
+
# and Region.
|
1707
1740
|
#
|
1708
1741
|
# Conditional: You must specify either `Arn`, or `TypeName` and
|
1709
1742
|
# `Type`.
|
@@ -2330,6 +2363,48 @@ module Aws::CloudFormation
|
|
2330
2363
|
include Aws::Structure
|
2331
2364
|
end
|
2332
2365
|
|
2366
|
+
# @!attribute [rw] call_as
|
2367
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
2368
|
+
# an account administrator in the organization's management account
|
2369
|
+
# or as a delegated administrator in a member account.
|
2370
|
+
#
|
2371
|
+
# By default, `SELF` is specified.
|
2372
|
+
#
|
2373
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2374
|
+
#
|
2375
|
+
# * If you are signed in to a delegated administrator account, specify
|
2376
|
+
# `DELEGATED_ADMIN`.
|
2377
|
+
#
|
2378
|
+
# Your Amazon Web Services account must be registered as a delegated
|
2379
|
+
# administrator in the management account. For more information, see
|
2380
|
+
# [Register a delegated administrator][1] in the *CloudFormation
|
2381
|
+
# User Guide*.
|
2382
|
+
#
|
2383
|
+
#
|
2384
|
+
#
|
2385
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2386
|
+
# @return [String]
|
2387
|
+
#
|
2388
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeOrganizationsAccessInput AWS API Documentation
|
2389
|
+
#
|
2390
|
+
class DescribeOrganizationsAccessInput < Struct.new(
|
2391
|
+
:call_as)
|
2392
|
+
SENSITIVE = []
|
2393
|
+
include Aws::Structure
|
2394
|
+
end
|
2395
|
+
|
2396
|
+
# @!attribute [rw] status
|
2397
|
+
# Presents the status of the `OrganizationAccess`.
|
2398
|
+
# @return [String]
|
2399
|
+
#
|
2400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeOrganizationsAccessOutput AWS API Documentation
|
2401
|
+
#
|
2402
|
+
class DescribeOrganizationsAccessOutput < Struct.new(
|
2403
|
+
:status)
|
2404
|
+
SENSITIVE = []
|
2405
|
+
include Aws::Structure
|
2406
|
+
end
|
2407
|
+
|
2333
2408
|
# @!attribute [rw] publisher_id
|
2334
2409
|
# The ID of the extension publisher.
|
2335
2410
|
#
|
@@ -2873,6 +2948,21 @@ module Aws::CloudFormation
|
|
2873
2948
|
# The input for DescribeStacks action.
|
2874
2949
|
#
|
2875
2950
|
# @!attribute [rw] stack_name
|
2951
|
+
# <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
|
2952
|
+
# response that describes all resources in the account. This requires
|
2953
|
+
# `ListStacks` and `DescribeStacks` permissions.
|
2954
|
+
#
|
2955
|
+
# The IAM policy below can be added to IAM policies when you want to
|
2956
|
+
# limit resource-level permissions and avoid returning a response when
|
2957
|
+
# no parameter is sent in the request:
|
2958
|
+
#
|
2959
|
+
# \\\{ "Version": "2012-10-17", "Statement": \[\\\{ "Effect":
|
2960
|
+
# "Deny", "Action": "cloudformation:DescribeStacks",
|
2961
|
+
# "NotResource": "arn:aws:cloudformation:*:*:stack/*/*" \\}\]
|
2962
|
+
# \\}
|
2963
|
+
#
|
2964
|
+
# </note>
|
2965
|
+
#
|
2876
2966
|
# The name or the unique stack ID that's associated with the stack,
|
2877
2967
|
# which aren't always interchangeable:
|
2878
2968
|
#
|
@@ -3003,8 +3093,8 @@ module Aws::CloudFormation
|
|
3003
3093
|
# Services and published by third parties, CloudFormation returns
|
3004
3094
|
# `null`. For more information, see [RegisterType][1].
|
3005
3095
|
#
|
3006
|
-
# To set the default version of an extension, use
|
3007
|
-
# SetTypeDefaultVersion
|
3096
|
+
# To set the default version of an extension, use
|
3097
|
+
# SetTypeDefaultVersion.
|
3008
3098
|
#
|
3009
3099
|
#
|
3010
3100
|
#
|
@@ -3199,7 +3289,7 @@ module Aws::CloudFormation
|
|
3199
3289
|
#
|
3200
3290
|
# @!attribute [rw] configuration_schema
|
3201
3291
|
# A JSON string that represent the current configuration data for the
|
3202
|
-
# extension in this account and
|
3292
|
+
# extension in this account and Region.
|
3203
3293
|
#
|
3204
3294
|
# To set the configuration data for an extension, use
|
3205
3295
|
# [SetTypeConfiguration][1]. For more information, see [Configuring
|
@@ -3222,11 +3312,11 @@ module Aws::CloudFormation
|
|
3222
3312
|
#
|
3223
3313
|
# @!attribute [rw] original_type_name
|
3224
3314
|
# For public extensions that have been activated for this account and
|
3225
|
-
#
|
3315
|
+
# Region, the type name of the public extension.
|
3226
3316
|
#
|
3227
3317
|
# If you specified a `TypeNameAlias` when enabling the extension in
|
3228
|
-
# this account and
|
3229
|
-
# extension's type name within the account and
|
3318
|
+
# this account and Region, CloudFormation treats that alias as the
|
3319
|
+
# extension's type name within the account and Region, not the type
|
3230
3320
|
# name of the public extension. For more information, see [Specifying
|
3231
3321
|
# aliases to refer to extensions][1] in the *CloudFormation User
|
3232
3322
|
# Guide*.
|
@@ -3238,7 +3328,7 @@ module Aws::CloudFormation
|
|
3238
3328
|
#
|
3239
3329
|
# @!attribute [rw] original_type_arn
|
3240
3330
|
# For public extensions that have been activated for this account and
|
3241
|
-
#
|
3331
|
+
# Region, the Amazon Resource Name (ARN) of the public extension.
|
3242
3332
|
# @return [String]
|
3243
3333
|
#
|
3244
3334
|
# @!attribute [rw] public_version_number
|
@@ -3260,7 +3350,7 @@ module Aws::CloudFormation
|
|
3260
3350
|
# @return [String]
|
3261
3351
|
#
|
3262
3352
|
# @!attribute [rw] is_activated
|
3263
|
-
# Whether the extension is activated in the account and
|
3353
|
+
# Whether the extension is activated in the account and Region.
|
3264
3354
|
#
|
3265
3355
|
# This only applies to public third-party extensions. For all other
|
3266
3356
|
# extensions, CloudFormation returns `null`.
|
@@ -3268,12 +3358,15 @@ module Aws::CloudFormation
|
|
3268
3358
|
#
|
3269
3359
|
# @!attribute [rw] auto_update
|
3270
3360
|
# Whether CloudFormation automatically updates the extension in this
|
3271
|
-
# account and
|
3361
|
+
# account and Region when a new *minor* version is published by the
|
3272
3362
|
# extension publisher. Major versions released by the publisher must
|
3273
3363
|
# be manually updated. For more information, see [Activating public
|
3274
|
-
# extensions for use in your
|
3275
|
-
#
|
3276
|
-
#
|
3364
|
+
# extensions for use in your account][1] in the *CloudFormation User
|
3365
|
+
# Guide*.
|
3366
|
+
#
|
3367
|
+
#
|
3368
|
+
#
|
3369
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable
|
3277
3370
|
# @return [Boolean]
|
3278
3371
|
#
|
3279
3372
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeOutput AWS API Documentation
|
@@ -3314,7 +3407,7 @@ module Aws::CloudFormation
|
|
3314
3407
|
# The identifier for this registration request.
|
3315
3408
|
#
|
3316
3409
|
# This registration token is generated by CloudFormation when you
|
3317
|
-
# initiate a registration request using
|
3410
|
+
# initiate a registration request using RegisterType.
|
3318
3411
|
# @return [String]
|
3319
3412
|
#
|
3320
3413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeRegistrationInput AWS API Documentation
|
@@ -3486,7 +3579,7 @@ module Aws::CloudFormation
|
|
3486
3579
|
# @!attribute [rw] operation_id
|
3487
3580
|
# The ID of the drift detection stack set operation.
|
3488
3581
|
#
|
3489
|
-
# You can use this operation ID with
|
3582
|
+
# You can use this operation ID with DescribeStackSetOperation to
|
3490
3583
|
# monitor the progress of the drift detection operation.
|
3491
3584
|
# @return [String]
|
3492
3585
|
#
|
@@ -4625,8 +4718,8 @@ module Aws::CloudFormation
|
|
4625
4718
|
# @!attribute [rw] registration_token_list
|
4626
4719
|
# A list of extension registration tokens.
|
4627
4720
|
#
|
4628
|
-
# Use
|
4629
|
-
#
|
4721
|
+
# Use DescribeTypeRegistration to return detailed information about a
|
4722
|
+
# type registration request.
|
4630
4723
|
# @return [Array<String>]
|
4631
4724
|
#
|
4632
4725
|
# @!attribute [rw] next_token
|
@@ -4750,13 +4843,13 @@ module Aws::CloudFormation
|
|
4750
4843
|
# Valid values include:
|
4751
4844
|
#
|
4752
4845
|
# * `PRIVATE`: Extensions that are visible and usable within this
|
4753
|
-
# account and
|
4846
|
+
# account and Region. This includes:
|
4754
4847
|
#
|
4755
4848
|
# * Private extensions you have registered in this account and
|
4756
|
-
#
|
4849
|
+
# Region.
|
4757
4850
|
#
|
4758
4851
|
# * Public extensions that you have activated in this account and
|
4759
|
-
#
|
4852
|
+
# Region.
|
4760
4853
|
#
|
4761
4854
|
# * `PUBLIC`: Extensions that are publicly visible and available to be
|
4762
4855
|
# activated within any Amazon Web Services account. This includes
|
@@ -4921,9 +5014,12 @@ module Aws::CloudFormation
|
|
4921
5014
|
# stack template.
|
4922
5015
|
#
|
4923
5016
|
# For more information about modules, see [Using modules to encapsulate
|
4924
|
-
# and reuse resource
|
4925
|
-
#
|
4926
|
-
#
|
5017
|
+
# and reuse resource configurations][1] in the *CloudFormation User
|
5018
|
+
# Guide*.
|
5019
|
+
#
|
5020
|
+
#
|
5021
|
+
#
|
5022
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html
|
4927
5023
|
#
|
4928
5024
|
# @!attribute [rw] type_hierarchy
|
4929
5025
|
# A concatenated list of the module type or types containing the
|
@@ -4947,9 +5043,12 @@ module Aws::CloudFormation
|
|
4947
5043
|
#
|
4948
5044
|
# `moduleA/moduleB`
|
4949
5045
|
#
|
4950
|
-
# For more information, see [Referencing resources in a
|
4951
|
-
#
|
4952
|
-
#
|
5046
|
+
# For more information, see [Referencing resources in a module][1] in
|
5047
|
+
# the *CloudFormation User Guide*.
|
5048
|
+
#
|
5049
|
+
#
|
5050
|
+
#
|
5051
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html#module-ref-resources
|
4953
5052
|
# @return [String]
|
4954
5053
|
#
|
4955
5054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ModuleInfo AWS API Documentation
|
@@ -5065,7 +5164,7 @@ module Aws::CloudFormation
|
|
5065
5164
|
#
|
5066
5165
|
# @!attribute [rw] resolved_value
|
5067
5166
|
# Read-only. The value that corresponds to a SSM parameter key. This
|
5068
|
-
# field is returned only for [
|
5167
|
+
# field is returned only for [ SSM][1] parameter types in the
|
5069
5168
|
# template.
|
5070
5169
|
#
|
5071
5170
|
#
|
@@ -5469,9 +5568,7 @@ module Aws::CloudFormation
|
|
5469
5568
|
# must contain a trust relationship with the CloudFormation service
|
5470
5569
|
# principle (`resources.cloudformation.amazonaws.com`). For more
|
5471
5570
|
# information about adding trust relationships, see [Modifying a role
|
5472
|
-
# trust
|
5473
|
-
# policy](IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy)
|
5474
|
-
# in the *Identity and Access Management User Guide*.
|
5571
|
+
# trust policy][1] in the *Identity and Access Management User Guide*.
|
5475
5572
|
#
|
5476
5573
|
# If your extension calls Amazon Web Services APIs in any of its
|
5477
5574
|
# handlers, you must create an <i> <a
|
@@ -5483,6 +5580,10 @@ module Aws::CloudFormation
|
|
5483
5580
|
# create a temporary session token, which it then passes to the
|
5484
5581
|
# resource type handler, thereby supplying your resource type with the
|
5485
5582
|
# appropriate credentials.
|
5583
|
+
#
|
5584
|
+
#
|
5585
|
+
#
|
5586
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy
|
5486
5587
|
# @return [String]
|
5487
5588
|
#
|
5488
5589
|
# @!attribute [rw] client_request_token
|
@@ -5509,9 +5610,9 @@ module Aws::CloudFormation
|
|
5509
5610
|
# @!attribute [rw] registration_token
|
5510
5611
|
# The identifier for this registration request.
|
5511
5612
|
#
|
5512
|
-
# Use this registration token when calling
|
5513
|
-
#
|
5514
|
-
#
|
5613
|
+
# Use this registration token when calling DescribeTypeRegistration,
|
5614
|
+
# which returns information about the status and IDs of the extension
|
5615
|
+
# registration.
|
5515
5616
|
# @return [String]
|
5516
5617
|
#
|
5517
5618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RegisterTypeOutput AWS API Documentation
|
@@ -5535,9 +5636,9 @@ module Aws::CloudFormation
|
|
5535
5636
|
#
|
5536
5637
|
# @!attribute [rw] type_name_alias
|
5537
5638
|
# An alias assigned to the public extension, in this account and
|
5538
|
-
#
|
5639
|
+
# Region. If you specify an alias for the extension, CloudFormation
|
5539
5640
|
# treats the alias as the extension type name within this account and
|
5540
|
-
#
|
5641
|
+
# Region. You must use the alias to refer to the extension in your
|
5541
5642
|
# templates, API calls, and CloudFormation console.
|
5542
5643
|
# @return [String]
|
5543
5644
|
#
|
@@ -5545,8 +5646,8 @@ module Aws::CloudFormation
|
|
5545
5646
|
# The type name of the public extension.
|
5546
5647
|
#
|
5547
5648
|
# If you specified a `TypeNameAlias` when enabling the extension in
|
5548
|
-
# this account and
|
5549
|
-
# extension's type name within the account and
|
5649
|
+
# this account and Region, CloudFormation treats that alias as the
|
5650
|
+
# extension's type name within the account and Region, not the type
|
5550
5651
|
# name of the public extension. For more information, see [Specifying
|
5551
5652
|
# aliases to refer to extensions][1] in the *CloudFormation User
|
5552
5653
|
# Guide*.
|
@@ -6015,12 +6116,12 @@ module Aws::CloudFormation
|
|
6015
6116
|
|
6016
6117
|
# @!attribute [rw] type_arn
|
6017
6118
|
# The Amazon Resource Name (ARN) for the extension, in this account
|
6018
|
-
# and
|
6119
|
+
# and Region.
|
6019
6120
|
#
|
6020
6121
|
# For public extensions, this will be the ARN assigned when you
|
6021
|
-
# [activate the type][1] in this account and
|
6122
|
+
# [activate the type][1] in this account and Region. For private
|
6022
6123
|
# extensions, this will be the ARN assigned when you [register the
|
6023
|
-
# type][2] in this account and
|
6124
|
+
# type][2] in this account and Region.
|
6024
6125
|
#
|
6025
6126
|
# Do not include the extension versions suffix at the end of the ARN.
|
6026
6127
|
# You can set the configuration for an extension, but not for a
|
@@ -6034,18 +6135,18 @@ module Aws::CloudFormation
|
|
6034
6135
|
#
|
6035
6136
|
# @!attribute [rw] configuration
|
6036
6137
|
# The configuration data for the extension, in this account and
|
6037
|
-
#
|
6138
|
+
# Region.
|
6038
6139
|
#
|
6039
6140
|
# The configuration data must be formatted as JSON, and validate
|
6040
6141
|
# against the schema returned in the `ConfigurationSchema` response
|
6041
|
-
# element of
|
6042
|
-
# [
|
6043
|
-
#
|
6044
|
-
# for an extension][1] in the *CloudFormation CLI User Guide*.
|
6142
|
+
# element of [DescribeType][1]. For more information, see [Defining
|
6143
|
+
# account-level configuration data for an extension][2] in the
|
6144
|
+
# *CloudFormation CLI User Guide*.
|
6045
6145
|
#
|
6046
6146
|
#
|
6047
6147
|
#
|
6048
|
-
# [1]: https://docs.aws.amazon.com/
|
6148
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
|
6149
|
+
# [2]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration
|
6049
6150
|
# @return [String]
|
6050
6151
|
#
|
6051
6152
|
# @!attribute [rw] configuration_alias
|
@@ -6083,7 +6184,7 @@ module Aws::CloudFormation
|
|
6083
6184
|
|
6084
6185
|
# @!attribute [rw] configuration_arn
|
6085
6186
|
# The Amazon Resource Name (ARN) for the configuration data, in this
|
6086
|
-
# account and
|
6187
|
+
# account and Region.
|
6087
6188
|
#
|
6088
6189
|
# Conditional: You must specify `ConfigurationArn`, or `Type` and
|
6089
6190
|
# `TypeName`.
|
@@ -6305,10 +6406,10 @@ module Aws::CloudFormation
|
|
6305
6406
|
#
|
6306
6407
|
# @!attribute [rw] drift_information
|
6307
6408
|
# Information about whether a stack's actual configuration differs,
|
6308
|
-
# or has *drifted*, from
|
6309
|
-
#
|
6310
|
-
#
|
6311
|
-
#
|
6409
|
+
# or has *drifted*, from its expected configuration, as defined in the
|
6410
|
+
# stack template and any values specified as template parameters. For
|
6411
|
+
# more information, see [Detecting Unregulated Configuration Changes
|
6412
|
+
# to Stacks and Resources][1].
|
6312
6413
|
#
|
6313
6414
|
#
|
6314
6415
|
#
|
@@ -6686,6 +6787,10 @@ module Aws::CloudFormation
|
|
6686
6787
|
# * `RUNNING`: The operation in the specified account and Region is
|
6687
6788
|
# currently in progress.
|
6688
6789
|
#
|
6790
|
+
# * `SKIPPED_SUSPENDED_ACCOUNT`: The operation in the specified
|
6791
|
+
# account and Region has been skipped because the account was
|
6792
|
+
# suspended at the time of the operation.
|
6793
|
+
#
|
6689
6794
|
# * `SUCCEEDED`: The operation in the specified account and Region
|
6690
6795
|
# completed successfully.
|
6691
6796
|
# @return [String]
|
@@ -7410,6 +7515,9 @@ module Aws::CloudFormation
|
|
7410
7515
|
# @return [Types::ManagedExecution]
|
7411
7516
|
#
|
7412
7517
|
# @!attribute [rw] regions
|
7518
|
+
# Returns a list of all Amazon Web Services Regions the given StackSet
|
7519
|
+
# has stack instances deployed in. The Amazon Web Services Regions
|
7520
|
+
# list output is in no particular order.
|
7413
7521
|
# @return [Array<String>]
|
7414
7522
|
#
|
7415
7523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
@@ -7730,7 +7838,7 @@ module Aws::CloudFormation
|
|
7730
7838
|
# @return [String]
|
7731
7839
|
#
|
7732
7840
|
# @!attribute [rw] region_order
|
7733
|
-
# The order of the Regions
|
7841
|
+
# The order of the Regions where you want to perform the stack
|
7734
7842
|
# operation.
|
7735
7843
|
# @return [Array<String>]
|
7736
7844
|
#
|
@@ -8154,7 +8262,7 @@ module Aws::CloudFormation
|
|
8154
8262
|
#
|
8155
8263
|
# @!attribute [rw] drift_information
|
8156
8264
|
# Summarizes information about whether a stack's actual configuration
|
8157
|
-
# differs, or has *drifted*, from
|
8265
|
+
# differs, or has *drifted*, from its expected configuration, as
|
8158
8266
|
# defined in the stack template and any values specified as template
|
8159
8267
|
# parameters. For more information, see [Detecting Unregulated
|
8160
8268
|
# Configuration Changes to Stacks and Resources][1].
|
@@ -8313,7 +8421,7 @@ module Aws::CloudFormation
|
|
8313
8421
|
# and `Type`.
|
8314
8422
|
#
|
8315
8423
|
# If you don't specify a version, CloudFormation uses the default
|
8316
|
-
# version of the extension in this account and
|
8424
|
+
# version of the extension in this account and Region for testing.
|
8317
8425
|
# @return [String]
|
8318
8426
|
#
|
8319
8427
|
# @!attribute [rw] log_delivery_bucket
|
@@ -8372,7 +8480,7 @@ module Aws::CloudFormation
|
|
8372
8480
|
class TokenAlreadyExistsException < Aws::EmptyStructure; end
|
8373
8481
|
|
8374
8482
|
# Detailed information concerning the specification of a CloudFormation
|
8375
|
-
# extension in a given account and
|
8483
|
+
# extension in a given account and Region.
|
8376
8484
|
#
|
8377
8485
|
# For more information, see [Configuring extensions at the account
|
8378
8486
|
# level][1] in the *CloudFormation User Guide*.
|
@@ -8383,7 +8491,7 @@ module Aws::CloudFormation
|
|
8383
8491
|
#
|
8384
8492
|
# @!attribute [rw] arn
|
8385
8493
|
# The Amazon Resource Name (ARN) for the configuration data, in this
|
8386
|
-
# account and
|
8494
|
+
# account and Region.
|
8387
8495
|
# @return [String]
|
8388
8496
|
#
|
8389
8497
|
# @!attribute [rw] alias
|
@@ -8393,7 +8501,7 @@ module Aws::CloudFormation
|
|
8393
8501
|
#
|
8394
8502
|
# @!attribute [rw] configuration
|
8395
8503
|
# A JSON string specifying the configuration data for the extension,
|
8396
|
-
# in this account and
|
8504
|
+
# in this account and Region.
|
8397
8505
|
#
|
8398
8506
|
# If a configuration hasn't been set for a specified extension,
|
8399
8507
|
# CloudFormation returns `\{\}`.
|
@@ -8408,12 +8516,12 @@ module Aws::CloudFormation
|
|
8408
8516
|
#
|
8409
8517
|
# @!attribute [rw] type_arn
|
8410
8518
|
# The Amazon Resource Name (ARN) for the extension, in this account
|
8411
|
-
# and
|
8519
|
+
# and Region.
|
8412
8520
|
#
|
8413
8521
|
# For public extensions, this will be the ARN assigned when you
|
8414
|
-
# [activate the type][1] in this account and
|
8522
|
+
# [activate the type][1] in this account and Region. For private
|
8415
8523
|
# extensions, this will be the ARN assigned when you [register the
|
8416
|
-
# type][2] in this account and
|
8524
|
+
# type][2] in this account and Region.
|
8417
8525
|
#
|
8418
8526
|
#
|
8419
8527
|
#
|
@@ -8449,12 +8557,12 @@ module Aws::CloudFormation
|
|
8449
8557
|
#
|
8450
8558
|
# @!attribute [rw] type_arn
|
8451
8559
|
# The Amazon Resource Name (ARN) for the extension, in this account
|
8452
|
-
# and
|
8560
|
+
# and Region.
|
8453
8561
|
#
|
8454
8562
|
# For public extensions, this will be the ARN assigned when you
|
8455
|
-
# [activate the type][1] in this account and
|
8563
|
+
# [activate the type][1] in this account and Region. For private
|
8456
8564
|
# extensions, this will be the ARN assigned when you [register the
|
8457
|
-
# type][2] in this account and
|
8565
|
+
# type][2] in this account and Region.
|
8458
8566
|
#
|
8459
8567
|
#
|
8460
8568
|
#
|
@@ -8469,7 +8577,7 @@ module Aws::CloudFormation
|
|
8469
8577
|
#
|
8470
8578
|
# @!attribute [rw] type_configuration_arn
|
8471
8579
|
# The Amazon Resource Name (ARN) for the configuration, in this
|
8472
|
-
# account and
|
8580
|
+
# account and Region.
|
8473
8581
|
# @return [String]
|
8474
8582
|
#
|
8475
8583
|
# @!attribute [rw] type
|
@@ -8504,10 +8612,10 @@ module Aws::CloudFormation
|
|
8504
8612
|
# The category of extensions to return.
|
8505
8613
|
#
|
8506
8614
|
# * `REGISTERED`: Private extensions that have been registered for
|
8507
|
-
# this account and
|
8615
|
+
# this account and Region.
|
8508
8616
|
#
|
8509
8617
|
# * `ACTIVATED`: Public extensions that have been activated for this
|
8510
|
-
# account and
|
8618
|
+
# account and Region.
|
8511
8619
|
#
|
8512
8620
|
# * `THIRD_PARTY`: Extensions available for use from publishers other
|
8513
8621
|
# than Amazon. This includes:
|
@@ -8559,7 +8667,7 @@ module Aws::CloudFormation
|
|
8559
8667
|
# The name of the extension.
|
8560
8668
|
#
|
8561
8669
|
# If you specified a `TypeNameAlias` when you [activate this
|
8562
|
-
# extension][1] in your account and
|
8670
|
+
# extension][1] in your account and Region, CloudFormation considers
|
8563
8671
|
# that alias as the type name.
|
8564
8672
|
#
|
8565
8673
|
#
|
@@ -8576,8 +8684,8 @@ module Aws::CloudFormation
|
|
8576
8684
|
# published by third parties, CloudFormation returns `null`. For more
|
8577
8685
|
# information, see [RegisterType][1].
|
8578
8686
|
#
|
8579
|
-
# To set the default version of an extension, use
|
8580
|
-
# SetTypeDefaultVersion
|
8687
|
+
# To set the default version of an extension, use
|
8688
|
+
# SetTypeDefaultVersion.
|
8581
8689
|
#
|
8582
8690
|
#
|
8583
8691
|
#
|
@@ -8619,11 +8727,11 @@ module Aws::CloudFormation
|
|
8619
8727
|
#
|
8620
8728
|
# @!attribute [rw] original_type_name
|
8621
8729
|
# For public extensions that have been activated for this account and
|
8622
|
-
#
|
8730
|
+
# Region, the type name of the public extension.
|
8623
8731
|
#
|
8624
8732
|
# If you specified a `TypeNameAlias` when enabling the extension in
|
8625
|
-
# this account and
|
8626
|
-
# extension's type name within the account and
|
8733
|
+
# this account and Region, CloudFormation treats that alias as the
|
8734
|
+
# extension's type name within the account and Region, not the type
|
8627
8735
|
# name of the public extension. For more information, see [Specifying
|
8628
8736
|
# aliases to refer to extensions][1] in the *CloudFormation User
|
8629
8737
|
# Guide*.
|
@@ -8635,12 +8743,12 @@ module Aws::CloudFormation
|
|
8635
8743
|
#
|
8636
8744
|
# @!attribute [rw] public_version_number
|
8637
8745
|
# For public extensions that have been activated for this account and
|
8638
|
-
#
|
8746
|
+
# Region, the version of the public extension to be used for
|
8639
8747
|
# CloudFormation operations in this account and Region.
|
8640
8748
|
#
|
8641
8749
|
# How you specified `AutoUpdate` when enabling the extension affects
|
8642
8750
|
# whether CloudFormation automatically updates the extension in this
|
8643
|
-
# account and
|
8751
|
+
# account and Region when a new version is released. For more
|
8644
8752
|
# information, see [Setting CloudFormation to automatically use new
|
8645
8753
|
# versions of extensions][1] in the *CloudFormation User Guide*.
|
8646
8754
|
#
|
@@ -8651,13 +8759,13 @@ module Aws::CloudFormation
|
|
8651
8759
|
#
|
8652
8760
|
# @!attribute [rw] latest_public_version
|
8653
8761
|
# For public extensions that have been activated for this account and
|
8654
|
-
#
|
8762
|
+
# Region, the latest version of the public extension *that is
|
8655
8763
|
# available*. For any extensions other than activated third-arty
|
8656
8764
|
# extensions, CloudFormation returns `null`.
|
8657
8765
|
#
|
8658
8766
|
# How you specified `AutoUpdate` when enabling the extension affects
|
8659
8767
|
# whether CloudFormation automatically updates the extension in this
|
8660
|
-
# account and
|
8768
|
+
# account and Region when a new version is released. For more
|
8661
8769
|
# information, see [Setting CloudFormation to automatically use new
|
8662
8770
|
# versions of extensions][1] in the *CloudFormation User Guide*.
|
8663
8771
|
#
|
@@ -8684,7 +8792,7 @@ module Aws::CloudFormation
|
|
8684
8792
|
# @return [String]
|
8685
8793
|
#
|
8686
8794
|
# @!attribute [rw] is_activated
|
8687
|
-
# Whether the extension is activated for this account and
|
8795
|
+
# Whether the extension is activated for this account and Region.
|
8688
8796
|
#
|
8689
8797
|
# This applies only to third-party public extensions. Extensions
|
8690
8798
|
# published by Amazon are activated by default.
|
@@ -8750,14 +8858,14 @@ module Aws::CloudFormation
|
|
8750
8858
|
#
|
8751
8859
|
# @!attribute [rw] public_version_number
|
8752
8860
|
# For public extensions that have been activated for this account and
|
8753
|
-
#
|
8754
|
-
# CloudFormation operations in this account and
|
8861
|
+
# Region, the version of the public extension to be used for
|
8862
|
+
# CloudFormation operations in this account and Region. For any
|
8755
8863
|
# extensions other than activated third-arty extensions,
|
8756
8864
|
# CloudFormation returns `null`.
|
8757
8865
|
#
|
8758
8866
|
# How you specified `AutoUpdate` when enabling the extension affects
|
8759
8867
|
# whether CloudFormation automatically updates the extension in this
|
8760
|
-
# account and
|
8868
|
+
# account and Region when a new version is released. For more
|
8761
8869
|
# information, see [Setting CloudFormation to automatically use new
|
8762
8870
|
# versions of extensions][1] in the *CloudFormation User Guide*.
|
8763
8871
|
#
|