aws-sdk-cloudformation 1.45.0 → 1.50.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 +335 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-cloudformation.rb +2 -2
- data/lib/aws-sdk-cloudformation/client.rb +536 -155
- data/lib/aws-sdk-cloudformation/client_api.rb +34 -1
- data/lib/aws-sdk-cloudformation/customizations.rb +1 -1
- data/lib/aws-sdk-cloudformation/errors.rb +1 -1
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +3 -3
- data/lib/aws-sdk-cloudformation/stack.rb +6 -5
- data/lib/aws-sdk-cloudformation/stack_resource.rb +9 -1
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +9 -1
- data/lib/aws-sdk-cloudformation/types.rb +688 -207
- data/lib/aws-sdk-cloudformation/waiters.rb +1 -1
- metadata +10 -7
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.50.0
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
53
53
|
# @!group service
|
54
54
|
module Aws::CloudFormation
|
55
55
|
|
56
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.50.0'
|
57
57
|
|
58
58
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -525,8 +525,9 @@ module Aws::CloudFormation
|
|
525
525
|
# @option params [String] :template_url
|
526
526
|
# The location of the file that contains the revised template. The URL
|
527
527
|
# must point to a template (max size: 460,800 bytes) that is located in
|
528
|
-
# an S3 bucket
|
529
|
-
# this template with the stack
|
528
|
+
# an S3 bucket or a Systems Manager document. AWS CloudFormation
|
529
|
+
# generates the change set by comparing this template with the stack
|
530
|
+
# that you specified.
|
530
531
|
#
|
531
532
|
# Conditional: You must specify only `TemplateBody` or `TemplateURL`.
|
532
533
|
#
|
@@ -815,8 +816,8 @@ module Aws::CloudFormation
|
|
815
816
|
# @option params [String] :template_url
|
816
817
|
# Location of file containing the template body. The URL must point to a
|
817
818
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
818
|
-
# bucket. For more information, go to the
|
819
|
-
# AWS CloudFormation User Guide.
|
819
|
+
# bucket or a Systems Manager document. For more information, go to the
|
820
|
+
# [Template Anatomy][1] in the AWS CloudFormation User Guide.
|
820
821
|
#
|
821
822
|
# Conditional: You must specify either the `TemplateBody` or the
|
822
823
|
# `TemplateURL` parameter, but not both.
|
@@ -1115,14 +1116,14 @@ module Aws::CloudFormation
|
|
1115
1116
|
# instances from.
|
1116
1117
|
#
|
1117
1118
|
# @option params [Array<String>] :accounts
|
1118
|
-
# \[
|
1119
|
+
# \[Self-managed permissions\] The names of one or more AWS accounts
|
1119
1120
|
# that you want to create stack instances in the specified Region(s)
|
1120
1121
|
# for.
|
1121
1122
|
#
|
1122
1123
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1123
1124
|
#
|
1124
1125
|
# @option params [Types::DeploymentTargets] :deployment_targets
|
1125
|
-
# \[
|
1126
|
+
# \[Service-managed permissions\] The AWS Organizations accounts for
|
1126
1127
|
# which to create stack instances in the specified Regions.
|
1127
1128
|
#
|
1128
1129
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1192,6 +1193,27 @@ module Aws::CloudFormation
|
|
1192
1193
|
# **A suitable default value is auto-generated.** You should normally
|
1193
1194
|
# not need to pass this option.**
|
1194
1195
|
#
|
1196
|
+
# @option params [String] :call_as
|
1197
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
1198
|
+
# account administrator in the organization's management account or as
|
1199
|
+
# a delegated administrator in a member account.
|
1200
|
+
#
|
1201
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1202
|
+
# self-managed permissions.
|
1203
|
+
#
|
1204
|
+
# * If you are signed in to the management account, specify `SELF`.
|
1205
|
+
#
|
1206
|
+
# * If you are signed in to a delegated administrator account, specify
|
1207
|
+
# `DELEGATED_ADMIN`.
|
1208
|
+
#
|
1209
|
+
# Your AWS account must be registered as a delegated administrator in
|
1210
|
+
# the management account. For more information, see [Register a
|
1211
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
1212
|
+
#
|
1213
|
+
#
|
1214
|
+
#
|
1215
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1216
|
+
#
|
1195
1217
|
# @return [Types::CreateStackInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1196
1218
|
#
|
1197
1219
|
# * {Types::CreateStackInstancesOutput#operation_id #operation_id} => String
|
@@ -1203,6 +1225,7 @@ module Aws::CloudFormation
|
|
1203
1225
|
# accounts: ["Account"],
|
1204
1226
|
# deployment_targets: {
|
1205
1227
|
# accounts: ["Account"],
|
1228
|
+
# accounts_url: "AccountsUrl",
|
1206
1229
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1207
1230
|
# },
|
1208
1231
|
# regions: ["Region"], # required
|
@@ -1215,6 +1238,7 @@ module Aws::CloudFormation
|
|
1215
1238
|
# },
|
1216
1239
|
# ],
|
1217
1240
|
# operation_preferences: {
|
1241
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1218
1242
|
# region_order: ["Region"],
|
1219
1243
|
# failure_tolerance_count: 1,
|
1220
1244
|
# failure_tolerance_percentage: 1,
|
@@ -1222,6 +1246,7 @@ module Aws::CloudFormation
|
|
1222
1246
|
# max_concurrent_percentage: 1,
|
1223
1247
|
# },
|
1224
1248
|
# operation_id: "ClientRequestToken",
|
1249
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1225
1250
|
# })
|
1226
1251
|
#
|
1227
1252
|
# @example Response structure
|
@@ -1268,8 +1293,9 @@ module Aws::CloudFormation
|
|
1268
1293
|
# @option params [String] :template_url
|
1269
1294
|
# The location of the file that contains the template body. The URL must
|
1270
1295
|
# point to a template (maximum size: 460,800 bytes) that's located in
|
1271
|
-
# an Amazon S3 bucket
|
1272
|
-
# in the AWS CloudFormation User
|
1296
|
+
# an Amazon S3 bucket or a Systems Manager document. For more
|
1297
|
+
# information, see [Template Anatomy][1] in the AWS CloudFormation User
|
1298
|
+
# Guide.
|
1273
1299
|
#
|
1274
1300
|
# Conditional: You must specify either the TemplateBody or the
|
1275
1301
|
# TemplateURL parameter, but not both.
|
@@ -1415,6 +1441,32 @@ module Aws::CloudFormation
|
|
1415
1441
|
# accounts that are added to the target organization or organizational
|
1416
1442
|
# unit (OU). Specify only if `PermissionModel` is `SERVICE_MANAGED`.
|
1417
1443
|
#
|
1444
|
+
# @option params [String] :call_as
|
1445
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
1446
|
+
# account administrator in the organization's management account or as
|
1447
|
+
# a delegated administrator in a member account.
|
1448
|
+
#
|
1449
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1450
|
+
# self-managed permissions.
|
1451
|
+
#
|
1452
|
+
# * To create a stack set with service-managed permissions while signed
|
1453
|
+
# in to the management account, specify `SELF`.
|
1454
|
+
#
|
1455
|
+
# * To create a stack set with service-managed permissions while signed
|
1456
|
+
# in to a delegated administrator account, specify `DELEGATED_ADMIN`.
|
1457
|
+
#
|
1458
|
+
# Your AWS account must be registered as a delegated admin in the
|
1459
|
+
# management account. For more information, see [Register a delegated
|
1460
|
+
# administrator][1] in the *AWS CloudFormation User Guide*.
|
1461
|
+
#
|
1462
|
+
# Stack sets with service-managed permissions are created in the
|
1463
|
+
# management account, including stack sets that are created by delegated
|
1464
|
+
# administrators.
|
1465
|
+
#
|
1466
|
+
#
|
1467
|
+
#
|
1468
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1469
|
+
#
|
1418
1470
|
# @option params [String] :client_request_token
|
1419
1471
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1420
1472
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1461,6 +1513,7 @@ module Aws::CloudFormation
|
|
1461
1513
|
# enabled: false,
|
1462
1514
|
# retain_stacks_on_account_removal: false,
|
1463
1515
|
# },
|
1516
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1464
1517
|
# client_request_token: "ClientRequestToken",
|
1465
1518
|
# })
|
1466
1519
|
#
|
@@ -1590,13 +1643,13 @@ module Aws::CloudFormation
|
|
1590
1643
|
# instances for.
|
1591
1644
|
#
|
1592
1645
|
# @option params [Array<String>] :accounts
|
1593
|
-
# \[
|
1646
|
+
# \[Self-managed permissions\] The names of the AWS accounts that you
|
1594
1647
|
# want to delete stack instances for.
|
1595
1648
|
#
|
1596
1649
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1597
1650
|
#
|
1598
1651
|
# @option params [Types::DeploymentTargets] :deployment_targets
|
1599
|
-
# \[
|
1652
|
+
# \[Service-managed permissions\] The AWS Organizations accounts from
|
1600
1653
|
# which to delete stack instances.
|
1601
1654
|
#
|
1602
1655
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1637,6 +1690,27 @@ module Aws::CloudFormation
|
|
1637
1690
|
# **A suitable default value is auto-generated.** You should normally
|
1638
1691
|
# not need to pass this option.**
|
1639
1692
|
#
|
1693
|
+
# @option params [String] :call_as
|
1694
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
1695
|
+
# account administrator in the organization's management account or as
|
1696
|
+
# a delegated administrator in a member account.
|
1697
|
+
#
|
1698
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1699
|
+
# self-managed permissions.
|
1700
|
+
#
|
1701
|
+
# * If you are signed in to the management account, specify `SELF`.
|
1702
|
+
#
|
1703
|
+
# * If you are signed in to a delegated administrator account, specify
|
1704
|
+
# `DELEGATED_ADMIN`.
|
1705
|
+
#
|
1706
|
+
# Your AWS account must be registered as a delegated administrator in
|
1707
|
+
# the management account. For more information, see [Register a
|
1708
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
1709
|
+
#
|
1710
|
+
#
|
1711
|
+
#
|
1712
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1713
|
+
#
|
1640
1714
|
# @return [Types::DeleteStackInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1641
1715
|
#
|
1642
1716
|
# * {Types::DeleteStackInstancesOutput#operation_id #operation_id} => String
|
@@ -1648,10 +1722,12 @@ module Aws::CloudFormation
|
|
1648
1722
|
# accounts: ["Account"],
|
1649
1723
|
# deployment_targets: {
|
1650
1724
|
# accounts: ["Account"],
|
1725
|
+
# accounts_url: "AccountsUrl",
|
1651
1726
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1652
1727
|
# },
|
1653
1728
|
# regions: ["Region"], # required
|
1654
1729
|
# operation_preferences: {
|
1730
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1655
1731
|
# region_order: ["Region"],
|
1656
1732
|
# failure_tolerance_count: 1,
|
1657
1733
|
# failure_tolerance_percentage: 1,
|
@@ -1660,6 +1736,7 @@ module Aws::CloudFormation
|
|
1660
1736
|
# },
|
1661
1737
|
# retain_stacks: false, # required
|
1662
1738
|
# operation_id: "ClientRequestToken",
|
1739
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1663
1740
|
# })
|
1664
1741
|
#
|
1665
1742
|
# @example Response structure
|
@@ -1683,12 +1760,34 @@ module Aws::CloudFormation
|
|
1683
1760
|
# The name or unique ID of the stack set that you're deleting. You can
|
1684
1761
|
# obtain this value by running ListStackSets.
|
1685
1762
|
#
|
1763
|
+
# @option params [String] :call_as
|
1764
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
1765
|
+
# account administrator in the organization's management account or as
|
1766
|
+
# a delegated administrator in a member account.
|
1767
|
+
#
|
1768
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1769
|
+
# self-managed permissions.
|
1770
|
+
#
|
1771
|
+
# * If you are signed in to the management account, specify `SELF`.
|
1772
|
+
#
|
1773
|
+
# * If you are signed in to a delegated administrator account, specify
|
1774
|
+
# `DELEGATED_ADMIN`.
|
1775
|
+
#
|
1776
|
+
# Your AWS account must be registered as a delegated administrator in
|
1777
|
+
# the management account. For more information, see [Register a
|
1778
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
1779
|
+
#
|
1780
|
+
#
|
1781
|
+
#
|
1782
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1783
|
+
#
|
1686
1784
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1687
1785
|
#
|
1688
1786
|
# @example Request syntax with placeholder values
|
1689
1787
|
#
|
1690
1788
|
# resp = client.delete_stack_set({
|
1691
1789
|
# stack_set_name: "StackSetName", # required
|
1790
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1692
1791
|
# })
|
1693
1792
|
#
|
1694
1793
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSet AWS API Documentation
|
@@ -1700,40 +1799,48 @@ module Aws::CloudFormation
|
|
1700
1799
|
req.send_request(options)
|
1701
1800
|
end
|
1702
1801
|
|
1703
|
-
#
|
1704
|
-
# registry
|
1705
|
-
# in CloudFormation
|
1802
|
+
# Marks an extension or extension version as `DEPRECATED` in the
|
1803
|
+
# CloudFormation registry, removing it from active use. Deprecated
|
1804
|
+
# extensions or extension versions cannot be used in CloudFormation
|
1805
|
+
# operations.
|
1806
|
+
#
|
1807
|
+
# To deregister an entire extension, you must individually deregister
|
1808
|
+
# all active versions of that extension. If an extension has only a
|
1809
|
+
# single active version, deregistering that version results in the
|
1810
|
+
# extension itself being deregistered and marked as deprecated in the
|
1811
|
+
# registry.
|
1706
1812
|
#
|
1707
|
-
#
|
1708
|
-
#
|
1709
|
-
#
|
1710
|
-
# deregistered.
|
1813
|
+
# You cannot deregister the default version of an extension if there are
|
1814
|
+
# other active version of that extension. If you do deregister the
|
1815
|
+
# default version of an extension, the textensionype itself is
|
1816
|
+
# deregistered as well and marked as deprecated.
|
1711
1817
|
#
|
1712
|
-
#
|
1713
|
-
#
|
1714
|
-
#
|
1818
|
+
# To view the deprecation status of an extension or extension version,
|
1819
|
+
# use [DescribeType][1].
|
1820
|
+
#
|
1821
|
+
#
|
1822
|
+
#
|
1823
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
|
1715
1824
|
#
|
1716
1825
|
# @option params [String] :arn
|
1717
|
-
# The Amazon Resource Name (ARN) of the
|
1826
|
+
# The Amazon Resource Name (ARN) of the extension.
|
1718
1827
|
#
|
1719
1828
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
1720
1829
|
#
|
1721
1830
|
# @option params [String] :type
|
1722
|
-
# The kind of
|
1723
|
-
#
|
1724
|
-
# Currently the only valid value is `RESOURCE`.
|
1831
|
+
# The kind of extension.
|
1725
1832
|
#
|
1726
1833
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
1727
1834
|
#
|
1728
1835
|
# @option params [String] :type_name
|
1729
|
-
# The name of the
|
1836
|
+
# The name of the extension.
|
1730
1837
|
#
|
1731
1838
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
1732
1839
|
#
|
1733
1840
|
# @option params [String] :version_id
|
1734
|
-
# The ID of a specific version of the
|
1735
|
-
# at the end of the Amazon Resource Name (ARN) assigned to the
|
1736
|
-
# version when it is registered.
|
1841
|
+
# The ID of a specific version of the extension. The version ID is the
|
1842
|
+
# value at the end of the Amazon Resource Name (ARN) assigned to the
|
1843
|
+
# extension version when it is registered.
|
1737
1844
|
#
|
1738
1845
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1739
1846
|
#
|
@@ -1741,7 +1848,7 @@ module Aws::CloudFormation
|
|
1741
1848
|
#
|
1742
1849
|
# resp = client.deregister_type({
|
1743
1850
|
# arn: "PrivateTypeArn",
|
1744
|
-
# type: "RESOURCE", # accepts RESOURCE
|
1851
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
1745
1852
|
# type_name: "TypeName",
|
1746
1853
|
# version_id: "TypeVersionId",
|
1747
1854
|
# })
|
@@ -1892,6 +1999,8 @@ module Aws::CloudFormation
|
|
1892
1999
|
# resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic"
|
1893
2000
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
1894
2001
|
# resp.changes[0].resource_change.change_set_id #=> String
|
2002
|
+
# resp.changes[0].resource_change.module_info.type_hierarchy #=> String
|
2003
|
+
# resp.changes[0].resource_change.module_info.logical_id_hierarchy #=> String
|
1895
2004
|
# resp.next_token #=> String
|
1896
2005
|
# resp.include_nested_stacks #=> Boolean
|
1897
2006
|
# resp.parent_change_set_id #=> String
|
@@ -2057,6 +2166,27 @@ module Aws::CloudFormation
|
|
2057
2166
|
# @option params [required, String] :stack_instance_region
|
2058
2167
|
# The name of a Region that's associated with this stack instance.
|
2059
2168
|
#
|
2169
|
+
# @option params [String] :call_as
|
2170
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
2171
|
+
# account administrator in the organization's management account or as
|
2172
|
+
# a delegated administrator in a member account.
|
2173
|
+
#
|
2174
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
2175
|
+
# self-managed permissions.
|
2176
|
+
#
|
2177
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2178
|
+
#
|
2179
|
+
# * If you are signed in to a delegated administrator account, specify
|
2180
|
+
# `DELEGATED_ADMIN`.
|
2181
|
+
#
|
2182
|
+
# Your AWS account must be registered as a delegated administrator in
|
2183
|
+
# the management account. For more information, see [Register a
|
2184
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
2185
|
+
#
|
2186
|
+
#
|
2187
|
+
#
|
2188
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2189
|
+
#
|
2060
2190
|
# @return [Types::DescribeStackInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2061
2191
|
#
|
2062
2192
|
# * {Types::DescribeStackInstanceOutput#stack_instance #stack_instance} => Types::StackInstance
|
@@ -2067,6 +2197,7 @@ module Aws::CloudFormation
|
|
2067
2197
|
# stack_set_name: "StackSetName", # required
|
2068
2198
|
# stack_instance_account: "Account", # required
|
2069
2199
|
# stack_instance_region: "Region", # required
|
2200
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2070
2201
|
# })
|
2071
2202
|
#
|
2072
2203
|
# @example Response structure
|
@@ -2143,6 +2274,8 @@ module Aws::CloudFormation
|
|
2143
2274
|
# resp.stack_resource_detail.metadata #=> String
|
2144
2275
|
# resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2145
2276
|
# resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
|
2277
|
+
# resp.stack_resource_detail.module_info.type_hierarchy #=> String
|
2278
|
+
# resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
|
2146
2279
|
#
|
2147
2280
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource AWS API Documentation
|
2148
2281
|
#
|
@@ -2237,6 +2370,8 @@ module Aws::CloudFormation
|
|
2237
2370
|
# resp.stack_resource_drifts[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
2238
2371
|
# resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2239
2372
|
# resp.stack_resource_drifts[0].timestamp #=> Time
|
2373
|
+
# resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
|
2374
|
+
# resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
|
2240
2375
|
# resp.next_token #=> String
|
2241
2376
|
#
|
2242
2377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResourceDrifts AWS API Documentation
|
@@ -2336,6 +2471,8 @@ module Aws::CloudFormation
|
|
2336
2471
|
# resp.stack_resources[0].description #=> String
|
2337
2472
|
# resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2338
2473
|
# resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
|
2474
|
+
# resp.stack_resources[0].module_info.type_hierarchy #=> String
|
2475
|
+
# resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
|
2339
2476
|
#
|
2340
2477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources AWS API Documentation
|
2341
2478
|
#
|
@@ -2351,6 +2488,27 @@ module Aws::CloudFormation
|
|
2351
2488
|
# @option params [required, String] :stack_set_name
|
2352
2489
|
# The name or unique ID of the stack set whose description you want.
|
2353
2490
|
#
|
2491
|
+
# @option params [String] :call_as
|
2492
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
2493
|
+
# account administrator in the organization's management account or as
|
2494
|
+
# a delegated administrator in a member account.
|
2495
|
+
#
|
2496
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
2497
|
+
# self-managed permissions.
|
2498
|
+
#
|
2499
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2500
|
+
#
|
2501
|
+
# * If you are signed in to a delegated administrator account, specify
|
2502
|
+
# `DELEGATED_ADMIN`.
|
2503
|
+
#
|
2504
|
+
# Your AWS account must be registered as a delegated administrator in
|
2505
|
+
# the management account. For more information, see [Register a
|
2506
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
2507
|
+
#
|
2508
|
+
#
|
2509
|
+
#
|
2510
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2511
|
+
#
|
2354
2512
|
# @return [Types::DescribeStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2355
2513
|
#
|
2356
2514
|
# * {Types::DescribeStackSetOutput#stack_set #stack_set} => Types::StackSet
|
@@ -2359,6 +2517,7 @@ module Aws::CloudFormation
|
|
2359
2517
|
#
|
2360
2518
|
# resp = client.describe_stack_set({
|
2361
2519
|
# stack_set_name: "StackSetName", # required
|
2520
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2362
2521
|
# })
|
2363
2522
|
#
|
2364
2523
|
# @example Response structure
|
@@ -2413,6 +2572,27 @@ module Aws::CloudFormation
|
|
2413
2572
|
# @option params [required, String] :operation_id
|
2414
2573
|
# The unique ID of the stack set operation.
|
2415
2574
|
#
|
2575
|
+
# @option params [String] :call_as
|
2576
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
2577
|
+
# account administrator in the organization's management account or as
|
2578
|
+
# a delegated administrator in a member account.
|
2579
|
+
#
|
2580
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
2581
|
+
# self-managed permissions.
|
2582
|
+
#
|
2583
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2584
|
+
#
|
2585
|
+
# * If you are signed in to a delegated administrator account, specify
|
2586
|
+
# `DELEGATED_ADMIN`.
|
2587
|
+
#
|
2588
|
+
# Your AWS account must be registered as a delegated administrator in
|
2589
|
+
# the management account. For more information, see [Register a
|
2590
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
2591
|
+
#
|
2592
|
+
#
|
2593
|
+
#
|
2594
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2595
|
+
#
|
2416
2596
|
# @return [Types::DescribeStackSetOperationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2417
2597
|
#
|
2418
2598
|
# * {Types::DescribeStackSetOperationOutput#stack_set_operation #stack_set_operation} => Types::StackSetOperation
|
@@ -2422,6 +2602,7 @@ module Aws::CloudFormation
|
|
2422
2602
|
# resp = client.describe_stack_set_operation({
|
2423
2603
|
# stack_set_name: "StackSetName", # required
|
2424
2604
|
# operation_id: "ClientRequestToken", # required
|
2605
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2425
2606
|
# })
|
2426
2607
|
#
|
2427
2608
|
# @example Response structure
|
@@ -2430,6 +2611,7 @@ module Aws::CloudFormation
|
|
2430
2611
|
# resp.stack_set_operation.stack_set_id #=> String
|
2431
2612
|
# resp.stack_set_operation.action #=> String, one of "CREATE", "UPDATE", "DELETE", "DETECT_DRIFT"
|
2432
2613
|
# resp.stack_set_operation.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "STOPPING", "STOPPED", "QUEUED"
|
2614
|
+
# resp.stack_set_operation.operation_preferences.region_concurrency_type #=> String, one of "SEQUENTIAL", "PARALLEL"
|
2433
2615
|
# resp.stack_set_operation.operation_preferences.region_order #=> Array
|
2434
2616
|
# resp.stack_set_operation.operation_preferences.region_order[0] #=> String
|
2435
2617
|
# resp.stack_set_operation.operation_preferences.failure_tolerance_count #=> Integer
|
@@ -2443,6 +2625,7 @@ module Aws::CloudFormation
|
|
2443
2625
|
# resp.stack_set_operation.end_timestamp #=> Time
|
2444
2626
|
# resp.stack_set_operation.deployment_targets.accounts #=> Array
|
2445
2627
|
# resp.stack_set_operation.deployment_targets.accounts[0] #=> String
|
2628
|
+
# resp.stack_set_operation.deployment_targets.accounts_url #=> String
|
2446
2629
|
# resp.stack_set_operation.deployment_targets.organizational_unit_ids #=> Array
|
2447
2630
|
# resp.stack_set_operation.deployment_targets.organizational_unit_ids[0] #=> String
|
2448
2631
|
# resp.stack_set_operation.stack_set_drift_detection_details.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKED"
|
@@ -2562,37 +2745,36 @@ module Aws::CloudFormation
|
|
2562
2745
|
req.send_request(options)
|
2563
2746
|
end
|
2564
2747
|
|
2565
|
-
# Returns detailed information about
|
2748
|
+
# Returns detailed information about an extension that has been
|
2749
|
+
# registered.
|
2566
2750
|
#
|
2567
2751
|
# If you specify a `VersionId`, `DescribeType` returns information about
|
2568
|
-
# that specific
|
2569
|
-
# the default
|
2752
|
+
# that specific extension version. Otherwise, it returns information
|
2753
|
+
# about the default extension version.
|
2570
2754
|
#
|
2571
2755
|
# @option params [String] :type
|
2572
|
-
# The kind of
|
2573
|
-
#
|
2574
|
-
# Currently the only valid value is `RESOURCE`.
|
2756
|
+
# The kind of extension.
|
2575
2757
|
#
|
2576
2758
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
2577
2759
|
#
|
2578
2760
|
# @option params [String] :type_name
|
2579
|
-
# The name of the
|
2761
|
+
# The name of the extension.
|
2580
2762
|
#
|
2581
2763
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
2582
2764
|
#
|
2583
2765
|
# @option params [String] :arn
|
2584
|
-
# The Amazon Resource Name (ARN) of the
|
2766
|
+
# The Amazon Resource Name (ARN) of the extension.
|
2585
2767
|
#
|
2586
2768
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
2587
2769
|
#
|
2588
2770
|
# @option params [String] :version_id
|
2589
|
-
# The ID of a specific version of the
|
2590
|
-
# at the end of the Amazon Resource Name (ARN) assigned to the
|
2591
|
-
# version when it is registered.
|
2771
|
+
# The ID of a specific version of the extension. The version ID is the
|
2772
|
+
# value at the end of the Amazon Resource Name (ARN) assigned to the
|
2773
|
+
# extension version when it is registered.
|
2592
2774
|
#
|
2593
2775
|
# If you specify a `VersionId`, `DescribeType` returns information about
|
2594
|
-
# that specific
|
2595
|
-
# the default
|
2776
|
+
# that specific extension version. Otherwise, it returns information
|
2777
|
+
# about the default extension version.
|
2596
2778
|
#
|
2597
2779
|
# @return [Types::DescribeTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2598
2780
|
#
|
@@ -2616,7 +2798,7 @@ module Aws::CloudFormation
|
|
2616
2798
|
# @example Request syntax with placeholder values
|
2617
2799
|
#
|
2618
2800
|
# resp = client.describe_type({
|
2619
|
-
# type: "RESOURCE", # accepts RESOURCE
|
2801
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
2620
2802
|
# type_name: "TypeName",
|
2621
2803
|
# arn: "TypeArn",
|
2622
2804
|
# version_id: "TypeVersionId",
|
@@ -2625,7 +2807,7 @@ module Aws::CloudFormation
|
|
2625
2807
|
# @example Response structure
|
2626
2808
|
#
|
2627
2809
|
# resp.arn #=> String
|
2628
|
-
# resp.type #=> String, one of "RESOURCE"
|
2810
|
+
# resp.type #=> String, one of "RESOURCE", "MODULE"
|
2629
2811
|
# resp.type_name #=> String
|
2630
2812
|
# resp.default_version_id #=> String
|
2631
2813
|
# resp.is_default_version #=> Boolean
|
@@ -2651,7 +2833,7 @@ module Aws::CloudFormation
|
|
2651
2833
|
req.send_request(options)
|
2652
2834
|
end
|
2653
2835
|
|
2654
|
-
# Returns information about
|
2836
|
+
# Returns information about an extension's registration, including its
|
2655
2837
|
# current status and type and version identifiers.
|
2656
2838
|
#
|
2657
2839
|
# When you initiate a registration request using ` RegisterType `, you
|
@@ -2659,7 +2841,7 @@ module Aws::CloudFormation
|
|
2659
2841
|
# that registration request.
|
2660
2842
|
#
|
2661
2843
|
# Once the registration request has completed, use ` DescribeType ` to
|
2662
|
-
# return detailed
|
2844
|
+
# return detailed information about an extension.
|
2663
2845
|
#
|
2664
2846
|
# @option params [required, String] :registration_token
|
2665
2847
|
# The identifier for this registration request.
|
@@ -2825,6 +3007,8 @@ module Aws::CloudFormation
|
|
2825
3007
|
# resp.stack_resource_drift.property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
2826
3008
|
# resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2827
3009
|
# resp.stack_resource_drift.timestamp #=> Time
|
3010
|
+
# resp.stack_resource_drift.module_info.type_hierarchy #=> String
|
3011
|
+
# resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
|
2828
3012
|
#
|
2829
3013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DetectStackResourceDrift AWS API Documentation
|
2830
3014
|
#
|
@@ -2851,7 +3035,7 @@ module Aws::CloudFormation
|
|
2851
3035
|
# Once the operation has completed, use the following actions to return
|
2852
3036
|
# drift information:
|
2853
3037
|
#
|
2854
|
-
# * Use ` DescribeStackSet ` to return detailed
|
3038
|
+
# * Use ` DescribeStackSet ` to return detailed information about the
|
2855
3039
|
# stack set, including detailed information about the last *completed*
|
2856
3040
|
# drift operation performed on the stack set. (Information about drift
|
2857
3041
|
# operations that are in progress is not included.)
|
@@ -2898,6 +3082,27 @@ module Aws::CloudFormation
|
|
2898
3082
|
# **A suitable default value is auto-generated.** You should normally
|
2899
3083
|
# not need to pass this option.**
|
2900
3084
|
#
|
3085
|
+
# @option params [String] :call_as
|
3086
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
3087
|
+
# account administrator in the organization's management account or as
|
3088
|
+
# a delegated administrator in a member account.
|
3089
|
+
#
|
3090
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3091
|
+
# self-managed permissions.
|
3092
|
+
#
|
3093
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3094
|
+
#
|
3095
|
+
# * If you are signed in to a delegated administrator account, specify
|
3096
|
+
# `DELEGATED_ADMIN`.
|
3097
|
+
#
|
3098
|
+
# Your AWS account must be registered as a delegated administrator in
|
3099
|
+
# the management account. For more information, see [Register a
|
3100
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
3101
|
+
#
|
3102
|
+
#
|
3103
|
+
#
|
3104
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3105
|
+
#
|
2901
3106
|
# @return [Types::DetectStackSetDriftOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2902
3107
|
#
|
2903
3108
|
# * {Types::DetectStackSetDriftOutput#operation_id #operation_id} => String
|
@@ -2907,6 +3112,7 @@ module Aws::CloudFormation
|
|
2907
3112
|
# resp = client.detect_stack_set_drift({
|
2908
3113
|
# stack_set_name: "StackSetNameOrId", # required
|
2909
3114
|
# operation_preferences: {
|
3115
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
2910
3116
|
# region_order: ["Region"],
|
2911
3117
|
# failure_tolerance_count: 1,
|
2912
3118
|
# failure_tolerance_percentage: 1,
|
@@ -2914,6 +3120,7 @@ module Aws::CloudFormation
|
|
2914
3120
|
# max_concurrent_percentage: 1,
|
2915
3121
|
# },
|
2916
3122
|
# operation_id: "ClientRequestToken",
|
3123
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2917
3124
|
# })
|
2918
3125
|
#
|
2919
3126
|
# @example Response structure
|
@@ -2947,8 +3154,9 @@ module Aws::CloudFormation
|
|
2947
3154
|
#
|
2948
3155
|
# @option params [String] :template_url
|
2949
3156
|
# Location of file containing the template body. The URL must point to a
|
2950
|
-
# template that is located in an Amazon S3 bucket
|
2951
|
-
# go to [Template Anatomy][1] in the AWS
|
3157
|
+
# template that is located in an Amazon S3 bucket or a Systems Manager
|
3158
|
+
# document. For more information, go to [Template Anatomy][1] in the AWS
|
3159
|
+
# CloudFormation User Guide.
|
2952
3160
|
#
|
2953
3161
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
2954
3162
|
# are passed, only `TemplateBody` is used.
|
@@ -3165,8 +3373,9 @@ module Aws::CloudFormation
|
|
3165
3373
|
# @option params [String] :template_url
|
3166
3374
|
# Location of file containing the template body. The URL must point to a
|
3167
3375
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
3168
|
-
# bucket. For more information about
|
3169
|
-
# Anatomy][1] in the AWS CloudFormation User
|
3376
|
+
# bucket or a Systems Manager document. For more information about
|
3377
|
+
# templates, see [Template Anatomy][1] in the AWS CloudFormation User
|
3378
|
+
# Guide.
|
3170
3379
|
#
|
3171
3380
|
# Conditional: You must specify only one of the following parameters:
|
3172
3381
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -3429,6 +3638,27 @@ module Aws::CloudFormation
|
|
3429
3638
|
# @option params [String] :stack_instance_region
|
3430
3639
|
# The name of the Region where you want to list stack instances.
|
3431
3640
|
#
|
3641
|
+
# @option params [String] :call_as
|
3642
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
3643
|
+
# account administrator in the organization's management account or as
|
3644
|
+
# a delegated administrator in a member account.
|
3645
|
+
#
|
3646
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3647
|
+
# self-managed permissions.
|
3648
|
+
#
|
3649
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3650
|
+
#
|
3651
|
+
# * If you are signed in to a delegated administrator account, specify
|
3652
|
+
# `DELEGATED_ADMIN`.
|
3653
|
+
#
|
3654
|
+
# Your AWS account must be registered as a delegated administrator in
|
3655
|
+
# the management account. For more information, see [Register a
|
3656
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
3657
|
+
#
|
3658
|
+
#
|
3659
|
+
#
|
3660
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3661
|
+
#
|
3432
3662
|
# @return [Types::ListStackInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3433
3663
|
#
|
3434
3664
|
# * {Types::ListStackInstancesOutput#summaries #summaries} => Array<Types::StackInstanceSummary>
|
@@ -3450,6 +3680,7 @@ module Aws::CloudFormation
|
|
3450
3680
|
# ],
|
3451
3681
|
# stack_instance_account: "Account",
|
3452
3682
|
# stack_instance_region: "Region",
|
3683
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3453
3684
|
# })
|
3454
3685
|
#
|
3455
3686
|
# @example Response structure
|
@@ -3521,6 +3752,8 @@ module Aws::CloudFormation
|
|
3521
3752
|
# resp.stack_resource_summaries[0].resource_status_reason #=> String
|
3522
3753
|
# resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
3523
3754
|
# resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
|
3755
|
+
# resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
|
3756
|
+
# resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
|
3524
3757
|
# resp.next_token #=> String
|
3525
3758
|
#
|
3526
3759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResources AWS API Documentation
|
@@ -3557,6 +3790,27 @@ module Aws::CloudFormation
|
|
3557
3790
|
# includes a `NextToken` value that you can assign to the `NextToken`
|
3558
3791
|
# request parameter to get the next set of results.
|
3559
3792
|
#
|
3793
|
+
# @option params [String] :call_as
|
3794
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
3795
|
+
# account administrator in the organization's management account or as
|
3796
|
+
# a delegated administrator in a member account.
|
3797
|
+
#
|
3798
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3799
|
+
# self-managed permissions.
|
3800
|
+
#
|
3801
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3802
|
+
#
|
3803
|
+
# * If you are signed in to a delegated administrator account, specify
|
3804
|
+
# `DELEGATED_ADMIN`.
|
3805
|
+
#
|
3806
|
+
# Your AWS account must be registered as a delegated administrator in
|
3807
|
+
# the management account. For more information, see [Register a
|
3808
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
3809
|
+
#
|
3810
|
+
#
|
3811
|
+
#
|
3812
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3813
|
+
#
|
3560
3814
|
# @return [Types::ListStackSetOperationResultsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3561
3815
|
#
|
3562
3816
|
# * {Types::ListStackSetOperationResultsOutput#summaries #summaries} => Array<Types::StackSetOperationResultSummary>
|
@@ -3571,6 +3825,7 @@ module Aws::CloudFormation
|
|
3571
3825
|
# operation_id: "ClientRequestToken", # required
|
3572
3826
|
# next_token: "NextToken",
|
3573
3827
|
# max_results: 1,
|
3828
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3574
3829
|
# })
|
3575
3830
|
#
|
3576
3831
|
# @example Response structure
|
@@ -3615,6 +3870,27 @@ module Aws::CloudFormation
|
|
3615
3870
|
# includes a `NextToken` value that you can assign to the `NextToken`
|
3616
3871
|
# request parameter to get the next set of results.
|
3617
3872
|
#
|
3873
|
+
# @option params [String] :call_as
|
3874
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
3875
|
+
# account administrator in the organization's management account or as
|
3876
|
+
# a delegated administrator in a member account.
|
3877
|
+
#
|
3878
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3879
|
+
# self-managed permissions.
|
3880
|
+
#
|
3881
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3882
|
+
#
|
3883
|
+
# * If you are signed in to a delegated administrator account, specify
|
3884
|
+
# `DELEGATED_ADMIN`.
|
3885
|
+
#
|
3886
|
+
# Your AWS account must be registered as a delegated administrator in
|
3887
|
+
# the management account. For more information, see [Register a
|
3888
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
3889
|
+
#
|
3890
|
+
#
|
3891
|
+
#
|
3892
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3893
|
+
#
|
3618
3894
|
# @return [Types::ListStackSetOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3619
3895
|
#
|
3620
3896
|
# * {Types::ListStackSetOperationsOutput#summaries #summaries} => Array<Types::StackSetOperationSummary>
|
@@ -3628,6 +3904,7 @@ module Aws::CloudFormation
|
|
3628
3904
|
# stack_set_name: "StackSetName", # required
|
3629
3905
|
# next_token: "NextToken",
|
3630
3906
|
# max_results: 1,
|
3907
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3631
3908
|
# })
|
3632
3909
|
#
|
3633
3910
|
# @example Response structure
|
@@ -3652,6 +3929,19 @@ module Aws::CloudFormation
|
|
3652
3929
|
# Returns summary information about stack sets that are associated with
|
3653
3930
|
# the user.
|
3654
3931
|
#
|
3932
|
+
# * \[Self-managed permissions\] If you set the `CallAs` parameter to
|
3933
|
+
# `SELF` while signed in to your AWS account, `ListStackSets` returns
|
3934
|
+
# all self-managed stack sets in your AWS account.
|
3935
|
+
#
|
3936
|
+
# * \[Service-managed permissions\] If you set the `CallAs` parameter to
|
3937
|
+
# `SELF` while signed in to the organization's management account,
|
3938
|
+
# `ListStackSets` returns all stack sets in the management account.
|
3939
|
+
#
|
3940
|
+
# * \[Service-managed permissions\] If you set the `CallAs` parameter to
|
3941
|
+
# `DELEGATED_ADMIN` while signed in to your member account,
|
3942
|
+
# `ListStackSets` returns all stack sets with service-managed
|
3943
|
+
# permissions in the management account.
|
3944
|
+
#
|
3655
3945
|
# @option params [String] :next_token
|
3656
3946
|
# If the previous paginated request didn't return all of the remaining
|
3657
3947
|
# results, the response object's `NextToken` parameter value is set to
|
@@ -3670,6 +3960,27 @@ module Aws::CloudFormation
|
|
3670
3960
|
# The status of the stack sets that you want to get summary information
|
3671
3961
|
# about.
|
3672
3962
|
#
|
3963
|
+
# @option params [String] :call_as
|
3964
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
3965
|
+
# account administrator in the management account or as a delegated
|
3966
|
+
# administrator in a member account.
|
3967
|
+
#
|
3968
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3969
|
+
# self-managed permissions.
|
3970
|
+
#
|
3971
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3972
|
+
#
|
3973
|
+
# * If you are signed in to a delegated administrator account, specify
|
3974
|
+
# `DELEGATED_ADMIN`.
|
3975
|
+
#
|
3976
|
+
# Your AWS account must be registered as a delegated administrator in
|
3977
|
+
# the management account. For more information, see [Register a
|
3978
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
3979
|
+
#
|
3980
|
+
#
|
3981
|
+
#
|
3982
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3983
|
+
#
|
3673
3984
|
# @return [Types::ListStackSetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3674
3985
|
#
|
3675
3986
|
# * {Types::ListStackSetsOutput#summaries #summaries} => Array<Types::StackSetSummary>
|
@@ -3683,6 +3994,7 @@ module Aws::CloudFormation
|
|
3683
3994
|
# next_token: "NextToken",
|
3684
3995
|
# max_results: 1,
|
3685
3996
|
# status: "ACTIVE", # accepts ACTIVE, DELETED
|
3997
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3686
3998
|
# })
|
3687
3999
|
#
|
3688
4000
|
# @example Response structure
|
@@ -3765,27 +4077,25 @@ module Aws::CloudFormation
|
|
3765
4077
|
req.send_request(options)
|
3766
4078
|
end
|
3767
4079
|
|
3768
|
-
# Returns a list of registration tokens for the specified
|
4080
|
+
# Returns a list of registration tokens for the specified extension(s).
|
3769
4081
|
#
|
3770
4082
|
# @option params [String] :type
|
3771
|
-
# The kind of
|
3772
|
-
#
|
3773
|
-
# Currently the only valid value is `RESOURCE`.
|
4083
|
+
# The kind of extension.
|
3774
4084
|
#
|
3775
4085
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
3776
4086
|
#
|
3777
4087
|
# @option params [String] :type_name
|
3778
|
-
# The name of the
|
4088
|
+
# The name of the extension.
|
3779
4089
|
#
|
3780
4090
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
3781
4091
|
#
|
3782
4092
|
# @option params [String] :type_arn
|
3783
|
-
# The Amazon Resource Name (ARN) of the
|
4093
|
+
# The Amazon Resource Name (ARN) of the extension.
|
3784
4094
|
#
|
3785
4095
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
3786
4096
|
#
|
3787
4097
|
# @option params [String] :registration_status_filter
|
3788
|
-
# The current status of the
|
4098
|
+
# The current status of the extension registration request.
|
3789
4099
|
#
|
3790
4100
|
# The default is `IN_PROGRESS`.
|
3791
4101
|
#
|
@@ -3813,7 +4123,7 @@ module Aws::CloudFormation
|
|
3813
4123
|
# @example Request syntax with placeholder values
|
3814
4124
|
#
|
3815
4125
|
# resp = client.list_type_registrations({
|
3816
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4126
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
3817
4127
|
# type_name: "TypeName",
|
3818
4128
|
# type_arn: "TypeArn",
|
3819
4129
|
# registration_status_filter: "COMPLETE", # accepts COMPLETE, IN_PROGRESS, FAILED
|
@@ -3836,23 +4146,22 @@ module Aws::CloudFormation
|
|
3836
4146
|
req.send_request(options)
|
3837
4147
|
end
|
3838
4148
|
|
3839
|
-
# Returns summary information about the versions of
|
4149
|
+
# Returns summary information about the versions of an extension.
|
3840
4150
|
#
|
3841
4151
|
# @option params [String] :type
|
3842
|
-
# The kind of the
|
3843
|
-
#
|
3844
|
-
# Currently the only valid value is `RESOURCE`.
|
4152
|
+
# The kind of the extension.
|
3845
4153
|
#
|
3846
4154
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
3847
4155
|
#
|
3848
4156
|
# @option params [String] :type_name
|
3849
|
-
# The name of the
|
4157
|
+
# The name of the extension for which you want version summary
|
4158
|
+
# information.
|
3850
4159
|
#
|
3851
4160
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
3852
4161
|
#
|
3853
4162
|
# @option params [String] :arn
|
3854
|
-
# The Amazon Resource Name (ARN) of the
|
3855
|
-
# summary information.
|
4163
|
+
# The Amazon Resource Name (ARN) of the extension for which you want
|
4164
|
+
# version summary information.
|
3856
4165
|
#
|
3857
4166
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
3858
4167
|
#
|
@@ -3871,17 +4180,17 @@ module Aws::CloudFormation
|
|
3871
4180
|
# `NextToken` parameter is set to `null`.
|
3872
4181
|
#
|
3873
4182
|
# @option params [String] :deprecated_status
|
3874
|
-
# The deprecation status of the
|
4183
|
+
# The deprecation status of the extension versions that you want to get
|
3875
4184
|
# summary information about.
|
3876
4185
|
#
|
3877
4186
|
# Valid values include:
|
3878
4187
|
#
|
3879
|
-
# * `LIVE`\: The
|
4188
|
+
# * `LIVE`\: The extension version is registered and can be used in
|
3880
4189
|
# CloudFormation operations, dependent on its provisioning behavior
|
3881
4190
|
# and visibility scope.
|
3882
4191
|
#
|
3883
|
-
# * `DEPRECATED`\: The
|
3884
|
-
# longer be used in CloudFormation operations.
|
4192
|
+
# * `DEPRECATED`\: The extension version has been deregistered and can
|
4193
|
+
# no longer be used in CloudFormation operations.
|
3885
4194
|
#
|
3886
4195
|
# The default is `LIVE`.
|
3887
4196
|
#
|
@@ -3895,7 +4204,7 @@ module Aws::CloudFormation
|
|
3895
4204
|
# @example Request syntax with placeholder values
|
3896
4205
|
#
|
3897
4206
|
# resp = client.list_type_versions({
|
3898
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4207
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
3899
4208
|
# type_name: "TypeName",
|
3900
4209
|
# arn: "PrivateTypeArn",
|
3901
4210
|
# max_results: 1,
|
@@ -3906,7 +4215,7 @@ module Aws::CloudFormation
|
|
3906
4215
|
# @example Response structure
|
3907
4216
|
#
|
3908
4217
|
# resp.type_version_summaries #=> Array
|
3909
|
-
# resp.type_version_summaries[0].type #=> String, one of "RESOURCE"
|
4218
|
+
# resp.type_version_summaries[0].type #=> String, one of "RESOURCE", "MODULE"
|
3910
4219
|
# resp.type_version_summaries[0].type_name #=> String
|
3911
4220
|
# resp.type_version_summaries[0].version_id #=> String
|
3912
4221
|
# resp.type_version_summaries[0].is_default_version #=> Boolean
|
@@ -3924,20 +4233,20 @@ module Aws::CloudFormation
|
|
3924
4233
|
req.send_request(options)
|
3925
4234
|
end
|
3926
4235
|
|
3927
|
-
# Returns summary information about
|
3928
|
-
# CloudFormation.
|
4236
|
+
# Returns summary information about extension that have been registered
|
4237
|
+
# with CloudFormation.
|
3929
4238
|
#
|
3930
4239
|
# @option params [String] :visibility
|
3931
|
-
# The scope at which the
|
3932
|
-
# operations.
|
4240
|
+
# The scope at which the extension is visible and usable in
|
4241
|
+
# CloudFormation operations.
|
3933
4242
|
#
|
3934
4243
|
# Valid values include:
|
3935
4244
|
#
|
3936
|
-
# * `PRIVATE`\: The
|
3937
|
-
# in which it is registered. Currently, AWS CloudFormation
|
3938
|
-
#
|
4245
|
+
# * `PRIVATE`\: The extension is only visible and usable within the
|
4246
|
+
# account in which it is registered. Currently, AWS CloudFormation
|
4247
|
+
# marks any extension you create as `PRIVATE`.
|
3939
4248
|
#
|
3940
|
-
# * `PUBLIC`\: The
|
4249
|
+
# * `PUBLIC`\: The extension is publically visible and usable within any
|
3941
4250
|
# Amazon account.
|
3942
4251
|
#
|
3943
4252
|
# The default is `PRIVATE`.
|
@@ -3949,27 +4258,30 @@ module Aws::CloudFormation
|
|
3949
4258
|
#
|
3950
4259
|
# Valid values include:
|
3951
4260
|
#
|
3952
|
-
# * `FULLY_MUTABLE`\: The
|
3953
|
-
# updates to the
|
4261
|
+
# * `FULLY_MUTABLE`\: The extension includes an update handler to
|
4262
|
+
# process updates to the extension during stack update operations.
|
3954
4263
|
#
|
3955
|
-
# * `IMMUTABLE`\: The
|
3956
|
-
#
|
3957
|
-
# update operations.
|
4264
|
+
# * `IMMUTABLE`\: The extension does not include an update handler, so
|
4265
|
+
# the extension cannot be updated and must instead be replaced during
|
4266
|
+
# stack update operations.
|
3958
4267
|
#
|
3959
|
-
# * `NON_PROVISIONABLE`\: The
|
3960
|
-
# delete handlers, and therefore cannot actually be provisioned.
|
4268
|
+
# * `NON_PROVISIONABLE`\: The extension does not include create, read,
|
4269
|
+
# and delete handlers, and therefore cannot actually be provisioned.
|
3961
4270
|
#
|
3962
4271
|
# @option params [String] :deprecated_status
|
3963
|
-
# The deprecation status of the
|
4272
|
+
# The deprecation status of the extension that you want to get summary
|
3964
4273
|
# information about.
|
3965
4274
|
#
|
3966
4275
|
# Valid values include:
|
3967
4276
|
#
|
3968
|
-
# * `LIVE`\: The
|
4277
|
+
# * `LIVE`\: The extension is registered for use in CloudFormation
|
3969
4278
|
# operations.
|
3970
4279
|
#
|
3971
|
-
# * `DEPRECATED`\: The
|
3972
|
-
# used in CloudFormation operations.
|
4280
|
+
# * `DEPRECATED`\: The extension has been deregistered and can no longer
|
4281
|
+
# be used in CloudFormation operations.
|
4282
|
+
#
|
4283
|
+
# @option params [String] :type
|
4284
|
+
# The type of extension.
|
3973
4285
|
#
|
3974
4286
|
# @option params [Integer] :max_results
|
3975
4287
|
# The maximum number of results to be returned with a single call. If
|
@@ -3998,6 +4310,7 @@ module Aws::CloudFormation
|
|
3998
4310
|
# visibility: "PUBLIC", # accepts PUBLIC, PRIVATE
|
3999
4311
|
# provisioning_type: "NON_PROVISIONABLE", # accepts NON_PROVISIONABLE, IMMUTABLE, FULLY_MUTABLE
|
4000
4312
|
# deprecated_status: "LIVE", # accepts LIVE, DEPRECATED
|
4313
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4001
4314
|
# max_results: 1,
|
4002
4315
|
# next_token: "NextToken",
|
4003
4316
|
# })
|
@@ -4005,7 +4318,7 @@ module Aws::CloudFormation
|
|
4005
4318
|
# @example Response structure
|
4006
4319
|
#
|
4007
4320
|
# resp.type_summaries #=> Array
|
4008
|
-
# resp.type_summaries[0].type #=> String, one of "RESOURCE"
|
4321
|
+
# resp.type_summaries[0].type #=> String, one of "RESOURCE", "MODULE"
|
4009
4322
|
# resp.type_summaries[0].type_name #=> String
|
4010
4323
|
# resp.type_summaries[0].default_version_id #=> String
|
4011
4324
|
# resp.type_summaries[0].type_arn #=> String
|
@@ -4103,24 +4416,25 @@ module Aws::CloudFormation
|
|
4103
4416
|
req.send_request(options)
|
4104
4417
|
end
|
4105
4418
|
|
4106
|
-
# Registers
|
4107
|
-
# makes it available for use in CloudFormation templates in
|
4108
|
-
# account, and includes:
|
4419
|
+
# Registers an extension with the CloudFormation service. Registering an
|
4420
|
+
# extension makes it available for use in CloudFormation templates in
|
4421
|
+
# your AWS account, and includes:
|
4109
4422
|
#
|
4110
|
-
# * Validating the
|
4423
|
+
# * Validating the extension schema
|
4111
4424
|
#
|
4112
|
-
# * Determining which handlers have been specified for the
|
4425
|
+
# * Determining which handlers, if any, have been specified for the
|
4426
|
+
# extension
|
4113
4427
|
#
|
4114
|
-
# * Making the
|
4428
|
+
# * Making the extension available for use in your account
|
4115
4429
|
#
|
4116
|
-
# For more information on how to develop
|
4430
|
+
# For more information on how to develop extensions and ready them for
|
4117
4431
|
# registeration, see [Creating Resource Providers][1] in the
|
4118
4432
|
# *CloudFormation CLI User Guide*.
|
4119
4433
|
#
|
4120
|
-
# You can have a maximum of 50 resource
|
4121
|
-
# time. This maximum is per account and per region. Use
|
4434
|
+
# You can have a maximum of 50 resource extension versions registered at
|
4435
|
+
# a time. This maximum is per account and per region. Use
|
4122
4436
|
# [DeregisterType](AWSCloudFormation/latest/APIReference/API_DeregisterType.html)
|
4123
|
-
# to deregister specific
|
4437
|
+
# to deregister specific extension versions if necessary.
|
4124
4438
|
#
|
4125
4439
|
# Once you have initiated a registration request using ` RegisterType `,
|
4126
4440
|
# you can use ` DescribeTypeRegistration ` to monitor the progress of
|
@@ -4131,18 +4445,16 @@ module Aws::CloudFormation
|
|
4131
4445
|
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html
|
4132
4446
|
#
|
4133
4447
|
# @option params [String] :type
|
4134
|
-
# The kind of
|
4135
|
-
#
|
4136
|
-
# Currently, the only valid value is `RESOURCE`.
|
4448
|
+
# The kind of extension.
|
4137
4449
|
#
|
4138
4450
|
# @option params [required, String] :type_name
|
4139
|
-
# The name of the
|
4451
|
+
# The name of the extension being registered.
|
4140
4452
|
#
|
4141
|
-
# We recommend that
|
4453
|
+
# We recommend that extension names adhere to the following pattern:
|
4142
4454
|
# *company\_or\_organization*\::*service*\::*type*.
|
4143
4455
|
#
|
4144
4456
|
# <note markdown="1"> The following organization namespaces are reserved and cannot be used
|
4145
|
-
# in your
|
4457
|
+
# in your extension names:
|
4146
4458
|
#
|
4147
4459
|
# * `Alexa`
|
4148
4460
|
#
|
@@ -4159,20 +4471,18 @@ module Aws::CloudFormation
|
|
4159
4471
|
# </note>
|
4160
4472
|
#
|
4161
4473
|
# @option params [required, String] :schema_handler_package
|
4162
|
-
# A url to the S3 bucket containing the
|
4163
|
-
# contains the
|
4164
|
-
# you want to register.
|
4474
|
+
# A url to the S3 bucket containing the extension project package that
|
4475
|
+
# contains the neccessary files for the extension you want to register.
|
4165
4476
|
#
|
4166
|
-
# For information on generating a schema handler package for the
|
4167
|
-
# you want to register, see [submit][1] in the *CloudFormation
|
4168
|
-
# Guide*.
|
4477
|
+
# For information on generating a schema handler package for the
|
4478
|
+
# extension you want to register, see [submit][1] in the *CloudFormation
|
4479
|
+
# CLI User Guide*.
|
4169
4480
|
#
|
4170
|
-
# <note markdown="1"> The user registering the
|
4171
|
-
#
|
4172
|
-
#
|
4173
|
-
#
|
4174
|
-
#
|
4175
|
-
# Guide*.
|
4481
|
+
# <note markdown="1"> The user registering the extension must be able to access the package
|
4482
|
+
# in the S3 bucket. That is, the user needs to have [GetObject][2]
|
4483
|
+
# permissions for the schema handler package. For more information, see
|
4484
|
+
# [Actions, Resources, and Condition Keys for Amazon S3][3] in the *AWS
|
4485
|
+
# Identity and Access Management User Guide*.
|
4176
4486
|
#
|
4177
4487
|
# </note>
|
4178
4488
|
#
|
@@ -4183,26 +4493,25 @@ module Aws::CloudFormation
|
|
4183
4493
|
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html
|
4184
4494
|
#
|
4185
4495
|
# @option params [Types::LoggingConfig] :logging_config
|
4186
|
-
# Specifies logging configuration information for
|
4496
|
+
# Specifies logging configuration information for an extension.
|
4187
4497
|
#
|
4188
4498
|
# @option params [String] :execution_role_arn
|
4189
4499
|
# The Amazon Resource Name (ARN) of the IAM role for CloudFormation to
|
4190
|
-
# assume when invoking the
|
4191
|
-
#
|
4500
|
+
# assume when invoking the extension. If your extension calls AWS APIs
|
4501
|
+
# in any of its handlers, you must create an <i> <a
|
4192
4502
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
4193
4503
|
# execution role</a> </i> that includes the necessary permissions to
|
4194
4504
|
# call those AWS APIs, and provision that execution role in your
|
4195
|
-
# account. When CloudFormation needs to invoke the
|
4196
|
-
#
|
4197
|
-
#
|
4198
|
-
#
|
4199
|
-
# credentials.
|
4505
|
+
# account. When CloudFormation needs to invoke the extension handler,
|
4506
|
+
# CloudFormation assumes this execution role to create a temporary
|
4507
|
+
# session token, which it then passes to the extension handler, thereby
|
4508
|
+
# supplying your extension with the appropriate credentials.
|
4200
4509
|
#
|
4201
4510
|
# @option params [String] :client_request_token
|
4202
4511
|
# A unique identifier that acts as an idempotency key for this
|
4203
4512
|
# registration request. Specifying a client request token prevents
|
4204
|
-
# CloudFormation from generating more than one version of
|
4205
|
-
# the same registeration request, even if the request is submitted
|
4513
|
+
# CloudFormation from generating more than one version of an extension
|
4514
|
+
# from the same registeration request, even if the request is submitted
|
4206
4515
|
# multiple times.
|
4207
4516
|
#
|
4208
4517
|
# @return [Types::RegisterTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -4212,7 +4521,7 @@ module Aws::CloudFormation
|
|
4212
4521
|
# @example Request syntax with placeholder values
|
4213
4522
|
#
|
4214
4523
|
# resp = client.register_type({
|
4215
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4524
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4216
4525
|
# type_name: "TypeName", # required
|
4217
4526
|
# schema_handler_package: "S3Url", # required
|
4218
4527
|
# logging_config: {
|
@@ -4276,29 +4585,29 @@ module Aws::CloudFormation
|
|
4276
4585
|
req.send_request(options)
|
4277
4586
|
end
|
4278
4587
|
|
4279
|
-
# Specify the default version of
|
4280
|
-
# will be used in CloudFormation operations.
|
4588
|
+
# Specify the default version of an extension. The default version of an
|
4589
|
+
# extension will be used in CloudFormation operations.
|
4281
4590
|
#
|
4282
4591
|
# @option params [String] :arn
|
4283
|
-
# The Amazon Resource Name (ARN) of the
|
4284
|
-
# summary information.
|
4592
|
+
# The Amazon Resource Name (ARN) of the extension for which you want
|
4593
|
+
# version summary information.
|
4285
4594
|
#
|
4286
4595
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
4287
4596
|
#
|
4288
4597
|
# @option params [String] :type
|
4289
|
-
# The kind of
|
4598
|
+
# The kind of extension.
|
4290
4599
|
#
|
4291
4600
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
4292
4601
|
#
|
4293
4602
|
# @option params [String] :type_name
|
4294
|
-
# The name of the
|
4603
|
+
# The name of the extension.
|
4295
4604
|
#
|
4296
4605
|
# Conditional: You must specify either `TypeName` and `Type`, or `Arn`.
|
4297
4606
|
#
|
4298
4607
|
# @option params [String] :version_id
|
4299
|
-
# The ID of a specific version of the
|
4300
|
-
# at the end of the Amazon Resource Name (ARN) assigned to the
|
4301
|
-
# version when it is registered.
|
4608
|
+
# The ID of a specific version of the extension. The version ID is the
|
4609
|
+
# value at the end of the Amazon Resource Name (ARN) assigned to the
|
4610
|
+
# extension version when it is registered.
|
4302
4611
|
#
|
4303
4612
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4304
4613
|
#
|
@@ -4306,7 +4615,7 @@ module Aws::CloudFormation
|
|
4306
4615
|
#
|
4307
4616
|
# resp = client.set_type_default_version({
|
4308
4617
|
# arn: "PrivateTypeArn",
|
4309
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4618
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4310
4619
|
# type_name: "TypeName",
|
4311
4620
|
# version_id: "TypeVersionId",
|
4312
4621
|
# })
|
@@ -4378,6 +4687,27 @@ module Aws::CloudFormation
|
|
4378
4687
|
# @option params [required, String] :operation_id
|
4379
4688
|
# The ID of the stack operation.
|
4380
4689
|
#
|
4690
|
+
# @option params [String] :call_as
|
4691
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
4692
|
+
# account administrator in the organization's management account or as
|
4693
|
+
# a delegated administrator in a member account.
|
4694
|
+
#
|
4695
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
4696
|
+
# self-managed permissions.
|
4697
|
+
#
|
4698
|
+
# * If you are signed in to the management account, specify `SELF`.
|
4699
|
+
#
|
4700
|
+
# * If you are signed in to a delegated administrator account, specify
|
4701
|
+
# `DELEGATED_ADMIN`.
|
4702
|
+
#
|
4703
|
+
# Your AWS account must be registered as a delegated administrator in
|
4704
|
+
# the management account. For more information, see [Register a
|
4705
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
4706
|
+
#
|
4707
|
+
#
|
4708
|
+
#
|
4709
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
4710
|
+
#
|
4381
4711
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4382
4712
|
#
|
4383
4713
|
# @example Request syntax with placeholder values
|
@@ -4385,6 +4715,7 @@ module Aws::CloudFormation
|
|
4385
4715
|
# resp = client.stop_stack_set_operation({
|
4386
4716
|
# stack_set_name: "StackSetName", # required
|
4387
4717
|
# operation_id: "ClientRequestToken", # required
|
4718
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4388
4719
|
# })
|
4389
4720
|
#
|
4390
4721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StopStackSetOperation AWS API Documentation
|
@@ -4429,8 +4760,9 @@ module Aws::CloudFormation
|
|
4429
4760
|
#
|
4430
4761
|
# @option params [String] :template_url
|
4431
4762
|
# Location of file containing the template body. The URL must point to a
|
4432
|
-
# template that is located in an Amazon S3 bucket
|
4433
|
-
# go to [Template Anatomy][1] in the AWS
|
4763
|
+
# template that is located in an Amazon S3 bucket or a Systems Manager
|
4764
|
+
# document. For more information, go to [Template Anatomy][1] in the AWS
|
4765
|
+
# CloudFormation User Guide.
|
4434
4766
|
#
|
4435
4767
|
# Conditional: You must specify only one of the following parameters:
|
4436
4768
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -4747,15 +5079,15 @@ module Aws::CloudFormation
|
|
4747
5079
|
# instances.
|
4748
5080
|
#
|
4749
5081
|
# @option params [Array<String>] :accounts
|
4750
|
-
# \[
|
4751
|
-
#
|
5082
|
+
# \[Self-managed permissions\] The names of one or more AWS accounts for
|
5083
|
+
# which you want to update parameter values for stack instances. The
|
4752
5084
|
# overridden parameter values will be applied to all stack instances in
|
4753
5085
|
# the specified accounts and Regions.
|
4754
5086
|
#
|
4755
5087
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
4756
5088
|
#
|
4757
5089
|
# @option params [Types::DeploymentTargets] :deployment_targets
|
4758
|
-
# \[
|
5090
|
+
# \[Service-managed permissions\] The AWS Organizations accounts for
|
4759
5091
|
# which you want to update parameter values for stack instances. If your
|
4760
5092
|
# update targets OUs, the overridden parameter values only apply to the
|
4761
5093
|
# accounts that are currently in the target OUs and their child OUs.
|
@@ -4833,6 +5165,27 @@ module Aws::CloudFormation
|
|
4833
5165
|
# **A suitable default value is auto-generated.** You should normally
|
4834
5166
|
# not need to pass this option.**
|
4835
5167
|
#
|
5168
|
+
# @option params [String] :call_as
|
5169
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
5170
|
+
# account administrator in the organization's management account or as
|
5171
|
+
# a delegated administrator in a member account.
|
5172
|
+
#
|
5173
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
5174
|
+
# self-managed permissions.
|
5175
|
+
#
|
5176
|
+
# * If you are signed in to the management account, specify `SELF`.
|
5177
|
+
#
|
5178
|
+
# * If you are signed in to a delegated administrator account, specify
|
5179
|
+
# `DELEGATED_ADMIN`.
|
5180
|
+
#
|
5181
|
+
# Your AWS account must be registered as a delegated administrator in
|
5182
|
+
# the management account. For more information, see [Register a
|
5183
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
5184
|
+
#
|
5185
|
+
#
|
5186
|
+
#
|
5187
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
5188
|
+
#
|
4836
5189
|
# @return [Types::UpdateStackInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4837
5190
|
#
|
4838
5191
|
# * {Types::UpdateStackInstancesOutput#operation_id #operation_id} => String
|
@@ -4844,6 +5197,7 @@ module Aws::CloudFormation
|
|
4844
5197
|
# accounts: ["Account"],
|
4845
5198
|
# deployment_targets: {
|
4846
5199
|
# accounts: ["Account"],
|
5200
|
+
# accounts_url: "AccountsUrl",
|
4847
5201
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
4848
5202
|
# },
|
4849
5203
|
# regions: ["Region"], # required
|
@@ -4856,6 +5210,7 @@ module Aws::CloudFormation
|
|
4856
5210
|
# },
|
4857
5211
|
# ],
|
4858
5212
|
# operation_preferences: {
|
5213
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
4859
5214
|
# region_order: ["Region"],
|
4860
5215
|
# failure_tolerance_count: 1,
|
4861
5216
|
# failure_tolerance_percentage: 1,
|
@@ -4863,6 +5218,7 @@ module Aws::CloudFormation
|
|
4863
5218
|
# max_concurrent_percentage: 1,
|
4864
5219
|
# },
|
4865
5220
|
# operation_id: "ClientRequestToken",
|
5221
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4866
5222
|
# })
|
4867
5223
|
#
|
4868
5224
|
# @example Response structure
|
@@ -4908,8 +5264,9 @@ module Aws::CloudFormation
|
|
4908
5264
|
# @option params [String] :template_url
|
4909
5265
|
# The location of the file that contains the template body. The URL must
|
4910
5266
|
# point to a template (maximum size: 460,800 bytes) that is located in
|
4911
|
-
# an Amazon S3 bucket
|
4912
|
-
# in the AWS CloudFormation User
|
5267
|
+
# an Amazon S3 bucket or a Systems Manager document. For more
|
5268
|
+
# information, see [Template Anatomy][1] in the AWS CloudFormation User
|
5269
|
+
# Guide.
|
4913
5270
|
#
|
4914
5271
|
# Conditional: You must specify only one of the following parameters:
|
4915
5272
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to true.
|
@@ -5073,7 +5430,7 @@ module Aws::CloudFormation
|
|
5073
5430
|
# permissions to perform operations on the stack set.
|
5074
5431
|
#
|
5075
5432
|
# @option params [Types::DeploymentTargets] :deployment_targets
|
5076
|
-
# \[
|
5433
|
+
# \[Service-managed permissions\] The AWS Organizations accounts in
|
5077
5434
|
# which to update associated stack instances.
|
5078
5435
|
#
|
5079
5436
|
# To update all the stack instances associated with this stack set, do
|
@@ -5108,7 +5465,7 @@ module Aws::CloudFormation
|
|
5108
5465
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html
|
5109
5466
|
#
|
5110
5467
|
# @option params [Types::AutoDeployment] :auto_deployment
|
5111
|
-
# \[
|
5468
|
+
# \[Service-managed permissions\] Describes whether StackSets
|
5112
5469
|
# automatically deploys to AWS Organizations accounts that are added to
|
5113
5470
|
# a target organization or organizational unit (OU).
|
5114
5471
|
#
|
@@ -5134,7 +5491,7 @@ module Aws::CloudFormation
|
|
5134
5491
|
# not need to pass this option.**
|
5135
5492
|
#
|
5136
5493
|
# @option params [Array<String>] :accounts
|
5137
|
-
# \[
|
5494
|
+
# \[Self-managed permissions\] The accounts in which to update
|
5138
5495
|
# associated stack instances. If you specify accounts, you must also
|
5139
5496
|
# specify the Regions in which to update stack set instances.
|
5140
5497
|
#
|
@@ -5169,6 +5526,27 @@ module Aws::CloudFormation
|
|
5169
5526
|
# while leaving all other stack instances with their existing stack
|
5170
5527
|
# instance status.
|
5171
5528
|
#
|
5529
|
+
# @option params [String] :call_as
|
5530
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
5531
|
+
# account administrator in the organization's management account or as
|
5532
|
+
# a delegated administrator in a member account.
|
5533
|
+
#
|
5534
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
5535
|
+
# self-managed permissions.
|
5536
|
+
#
|
5537
|
+
# * If you are signed in to the management account, specify `SELF`.
|
5538
|
+
#
|
5539
|
+
# * If you are signed in to a delegated administrator account, specify
|
5540
|
+
# `DELEGATED_ADMIN`.
|
5541
|
+
#
|
5542
|
+
# Your AWS account must be registered as a delegated administrator in
|
5543
|
+
# the management account. For more information, see [Register a
|
5544
|
+
# delegated administrator][1] in the *AWS CloudFormation User Guide*.
|
5545
|
+
#
|
5546
|
+
#
|
5547
|
+
#
|
5548
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
5549
|
+
#
|
5172
5550
|
# @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5173
5551
|
#
|
5174
5552
|
# * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
|
@@ -5197,6 +5575,7 @@ module Aws::CloudFormation
|
|
5197
5575
|
# },
|
5198
5576
|
# ],
|
5199
5577
|
# operation_preferences: {
|
5578
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
5200
5579
|
# region_order: ["Region"],
|
5201
5580
|
# failure_tolerance_count: 1,
|
5202
5581
|
# failure_tolerance_percentage: 1,
|
@@ -5207,6 +5586,7 @@ module Aws::CloudFormation
|
|
5207
5586
|
# execution_role_name: "ExecutionRoleName",
|
5208
5587
|
# deployment_targets: {
|
5209
5588
|
# accounts: ["Account"],
|
5589
|
+
# accounts_url: "AccountsUrl",
|
5210
5590
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
5211
5591
|
# },
|
5212
5592
|
# permission_model: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, SELF_MANAGED
|
@@ -5217,6 +5597,7 @@ module Aws::CloudFormation
|
|
5217
5597
|
# operation_id: "ClientRequestToken",
|
5218
5598
|
# accounts: ["Account"],
|
5219
5599
|
# regions: ["Region"],
|
5600
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
5220
5601
|
# })
|
5221
5602
|
#
|
5222
5603
|
# @example Response structure
|
@@ -5297,8 +5678,8 @@ module Aws::CloudFormation
|
|
5297
5678
|
# @option params [String] :template_url
|
5298
5679
|
# Location of file containing the template body. The URL must point to a
|
5299
5680
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
5300
|
-
# bucket. For more information, go to
|
5301
|
-
# CloudFormation User Guide.
|
5681
|
+
# bucket or a Systems Manager document. For more information, go to
|
5682
|
+
# [Template Anatomy][1] in the AWS CloudFormation User Guide.
|
5302
5683
|
#
|
5303
5684
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
5304
5685
|
# are passed, only `TemplateBody` is used.
|
@@ -5358,7 +5739,7 @@ module Aws::CloudFormation
|
|
5358
5739
|
params: params,
|
5359
5740
|
config: config)
|
5360
5741
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5361
|
-
context[:gem_version] = '1.
|
5742
|
+
context[:gem_version] = '1.50.0'
|
5362
5743
|
Seahorse::Client::Request.new(handlers, context)
|
5363
5744
|
end
|
5364
5745
|
|