aws-sdk-cloudformation 1.75.0 → 1.77.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +23 -23
- data/lib/aws-sdk-cloudformation/client_api.rb +1 -0
- data/lib/aws-sdk-cloudformation/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-cloudformation/endpoint_provider.rb +29 -32
- data/lib/aws-sdk-cloudformation/stack.rb +2 -2
- data/lib/aws-sdk-cloudformation/types.rb +147 -143
- data/lib/aws-sdk-cloudformation/waiters.rb +6 -0
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49fcfcff101859284281949b578c9dc2f95b5cc1600eb52b421bafefd8e77d15
|
4
|
+
data.tar.gz: b5b31b853ff0cd61f34fcc32ba8c68d3a4682c1f5ac9cc263e5cd43c1ecd74a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32a5e48f444e0f15b32dce7eaa10d195c9f820433af629c36b76b15e461c0d3e0a07efaa6445d1f43004547cb84068de6f00feccf295ab878685b9a706333652
|
7
|
+
data.tar.gz: f46450e08887fd2db6b99434cb49544b06b7ca3e5b8a2f8ba66a0e291260f6a752672bcc4e43555add8eb9c1f00e613cd48c9e663976143234e2241696a13aef
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.77.0 (2023-04-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.
|
8
|
+
|
9
|
+
1.76.0 (2023-01-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This feature provides a method of obtaining which regions a stackset has stack instances deployed in.
|
13
|
+
|
4
14
|
1.75.0 (2023-01-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
@@ -438,10 +438,10 @@ module Aws::CloudFormation
|
|
438
438
|
# version, if available. You can also use this parameter to update the
|
439
439
|
# value of `AutoUpdate`.
|
440
440
|
#
|
441
|
-
# * `MAJOR
|
441
|
+
# * `MAJOR`: CloudFormation updates the extension to the newest major
|
442
442
|
# version, if one is available.
|
443
443
|
#
|
444
|
-
# * `MINOR
|
444
|
+
# * `MINOR`: CloudFormation updates the extension to the newest minor
|
445
445
|
# version, if one is available.
|
446
446
|
#
|
447
447
|
# @option params [Integer] :major_version
|
@@ -2729,16 +2729,16 @@ module Aws::CloudFormation
|
|
2729
2729
|
# The resource drift status values to use as filters for the resource
|
2730
2730
|
# drift results returned.
|
2731
2731
|
#
|
2732
|
-
# * `DELETED
|
2732
|
+
# * `DELETED`: The resource differs from its expected template
|
2733
2733
|
# configuration in that the resource has been deleted.
|
2734
2734
|
#
|
2735
|
-
# * `MODIFIED
|
2735
|
+
# * `MODIFIED`: One or more resource properties differ from their
|
2736
2736
|
# expected template values.
|
2737
2737
|
#
|
2738
|
-
# * `IN_SYNC
|
2739
|
-
#
|
2738
|
+
# * `IN_SYNC`: The resource's actual configuration matches its expected
|
2739
|
+
# template configuration.
|
2740
2740
|
#
|
2741
|
-
# * `NOT_CHECKED
|
2741
|
+
# * `NOT_CHECKED`: CloudFormation doesn't currently return this value.
|
2742
2742
|
#
|
2743
2743
|
# @option params [String] :next_token
|
2744
2744
|
# A string that identifies the next page of stack resource drift
|
@@ -2970,6 +2970,8 @@ module Aws::CloudFormation
|
|
2970
2970
|
# resp.stack_set.organizational_unit_ids #=> Array
|
2971
2971
|
# resp.stack_set.organizational_unit_ids[0] #=> String
|
2972
2972
|
# resp.stack_set.managed_execution.active #=> Boolean
|
2973
|
+
# resp.stack_set.regions #=> Array
|
2974
|
+
# resp.stack_set.regions[0] #=> String
|
2973
2975
|
#
|
2974
2976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
|
2975
2977
|
#
|
@@ -4788,12 +4790,12 @@ module Aws::CloudFormation
|
|
4788
4790
|
#
|
4789
4791
|
# Valid values include:
|
4790
4792
|
#
|
4791
|
-
# * `LIVE
|
4793
|
+
# * `LIVE`: The extension version is registered and can be used in
|
4792
4794
|
# CloudFormation operations, dependent on its provisioning behavior
|
4793
4795
|
# and visibility scope.
|
4794
4796
|
#
|
4795
|
-
# * `DEPRECATED
|
4796
|
-
#
|
4797
|
+
# * `DEPRECATED`: The extension version has been deregistered and can no
|
4798
|
+
# longer be used in CloudFormation operations.
|
4797
4799
|
#
|
4798
4800
|
# The default is `LIVE`.
|
4799
4801
|
#
|
@@ -4852,7 +4854,7 @@ module Aws::CloudFormation
|
|
4852
4854
|
#
|
4853
4855
|
# Valid values include:
|
4854
4856
|
#
|
4855
|
-
# * `PRIVATE
|
4857
|
+
# * `PRIVATE`: Extensions that are visible and usable within this
|
4856
4858
|
# account and region. This includes:
|
4857
4859
|
#
|
4858
4860
|
# * Private extensions you have registered in this account and region.
|
@@ -4860,7 +4862,7 @@ module Aws::CloudFormation
|
|
4860
4862
|
# * Public extensions that you have activated in this account and
|
4861
4863
|
# region.
|
4862
4864
|
#
|
4863
|
-
# * `PUBLIC
|
4865
|
+
# * `PUBLIC`: Extensions that are publicly visible and available to be
|
4864
4866
|
# activated within any Amazon Web Services account. This includes
|
4865
4867
|
# extensions from Amazon Web Services, in addition to third-party
|
4866
4868
|
# publishers.
|
@@ -4875,14 +4877,14 @@ module Aws::CloudFormation
|
|
4875
4877
|
#
|
4876
4878
|
# Valid values include:
|
4877
4879
|
#
|
4878
|
-
# * `FULLY_MUTABLE
|
4880
|
+
# * `FULLY_MUTABLE`: The resource type includes an update handler to
|
4879
4881
|
# process updates to the type during stack update operations.
|
4880
4882
|
#
|
4881
|
-
# * `IMMUTABLE
|
4883
|
+
# * `IMMUTABLE`: The resource type doesn't include an update handler,
|
4882
4884
|
# so the type can't be updated and must instead be replaced during
|
4883
4885
|
# stack update operations.
|
4884
4886
|
#
|
4885
|
-
# * `NON_PROVISIONABLE
|
4887
|
+
# * `NON_PROVISIONABLE`: The resource type doesn't include create,
|
4886
4888
|
# read, and delete handlers, and therefore can't actually be
|
4887
4889
|
# provisioned.
|
4888
4890
|
#
|
@@ -4894,10 +4896,10 @@ module Aws::CloudFormation
|
|
4894
4896
|
#
|
4895
4897
|
# Valid values include:
|
4896
4898
|
#
|
4897
|
-
# * `LIVE
|
4899
|
+
# * `LIVE`: The extension is registered for use in CloudFormation
|
4898
4900
|
# operations.
|
4899
4901
|
#
|
4900
|
-
# * `DEPRECATED
|
4902
|
+
# * `DEPRECATED`: The extension has been deregistered and can no longer
|
4901
4903
|
# be used in CloudFormation operations.
|
4902
4904
|
#
|
4903
4905
|
# @option params [String] :type
|
@@ -5239,13 +5241,11 @@ module Aws::CloudFormation
|
|
5239
5241
|
#
|
5240
5242
|
# We suggest that extension names adhere to the following patterns:
|
5241
5243
|
#
|
5242
|
-
# * For resource types,
|
5243
|
-
# *company\_or\_organization*\::*service*\::*type*.
|
5244
|
+
# * For resource types, *company\_or\_organization*::*service*::*type*.
|
5244
5245
|
#
|
5245
|
-
# * For modules,
|
5246
|
-
# *company\_or\_organization*\::*service*\::*type*\::MODULE.
|
5246
|
+
# * For modules, *company\_or\_organization*::*service*::*type*::MODULE.
|
5247
5247
|
#
|
5248
|
-
# * For hooks, *MyCompany
|
5248
|
+
# * For hooks, *MyCompany*::*Testing*::*MyTestHook*.
|
5249
5249
|
#
|
5250
5250
|
# <note markdown="1"> The following organization namespaces are reserved and can't be used
|
5251
5251
|
# in your extension names:
|
@@ -6823,7 +6823,7 @@ module Aws::CloudFormation
|
|
6823
6823
|
params: params,
|
6824
6824
|
config: config)
|
6825
6825
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6826
|
-
context[:gem_version] = '1.
|
6826
|
+
context[:gem_version] = '1.77.0'
|
6827
6827
|
Seahorse::Client::Request.new(handlers, context)
|
6828
6828
|
end
|
6829
6829
|
|
@@ -1529,6 +1529,7 @@ module Aws::CloudFormation
|
|
1529
1529
|
StackSet.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
|
1530
1530
|
StackSet.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
|
1531
1531
|
StackSet.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
|
1532
|
+
StackSet.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
|
1532
1533
|
StackSet.struct_class = Types::StackSet
|
1533
1534
|
|
1534
1535
|
StackSetDriftDetectionDetails.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackSetDriftStatus, location_name: "DriftStatus"))
|
@@ -50,9 +50,6 @@ module Aws::CloudFormation
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
-
if self[:region].nil?
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
-
end
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
58
55
|
if self[:use_dual_stack].nil?
|
@@ -14,45 +14,42 @@ module Aws::CloudFormation
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
|
-
if
|
18
|
-
if Aws::Endpoints::Matchers.
|
19
|
-
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
-
end
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
-
end
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
26
20
|
end
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
28
|
-
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
-
end
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
32
23
|
end
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
25
|
+
end
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
37
31
|
end
|
38
|
-
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
39
33
|
end
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
37
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
|
+
end
|
39
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
|
+
end
|
41
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
45
42
|
end
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
44
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
|
+
end
|
47
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
48
|
+
end
|
49
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
53
50
|
end
|
54
|
-
return Aws::Endpoints::Endpoint.new(url: "https://cloudformation.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
55
51
|
end
|
52
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
56
53
|
raise ArgumentError, 'No endpoint could be resolved'
|
57
54
|
|
58
55
|
end
|
@@ -100,9 +100,9 @@ module Aws::CloudFormation
|
|
100
100
|
|
101
101
|
# Boolean to enable or disable rollback on stack creation failures:
|
102
102
|
#
|
103
|
-
# * `true
|
103
|
+
# * `true`: disable rollback.
|
104
104
|
#
|
105
|
-
# * `false
|
105
|
+
# * `false`: enable rollback.
|
106
106
|
# @return [Boolean]
|
107
107
|
def disable_rollback
|
108
108
|
data[:disable_rollback]
|
@@ -32,18 +32,18 @@ module Aws::CloudFormation
|
|
32
32
|
# @!attribute [rw] status
|
33
33
|
# The status of the account gate function.
|
34
34
|
#
|
35
|
-
# * `SUCCEEDED
|
35
|
+
# * `SUCCEEDED`: The account gate function has determined that the
|
36
36
|
# account and Region passes any requirements for a stack set
|
37
37
|
# operation to occur. CloudFormation proceeds with the stack
|
38
38
|
# operation in that account and Region.
|
39
39
|
#
|
40
|
-
# * `FAILED
|
40
|
+
# * `FAILED`: The account gate function has determined that the
|
41
41
|
# account and Region doesn't meet the requirements for a stack set
|
42
42
|
# operation to occur. CloudFormation cancels the stack set operation
|
43
43
|
# in that account and Region, and sets the stack set operation
|
44
44
|
# result status for that account and Region to `FAILED`.
|
45
45
|
#
|
46
|
-
# * `SKIPPED
|
46
|
+
# * `SKIPPED`: CloudFormation has skipped calling the account gate
|
47
47
|
# function for this account and Region, for one of the following
|
48
48
|
# reasons:
|
49
49
|
#
|
@@ -175,10 +175,10 @@ module Aws::CloudFormation
|
|
175
175
|
# version, if available. You can also use this parameter to update the
|
176
176
|
# value of `AutoUpdate`.
|
177
177
|
#
|
178
|
-
# * `MAJOR
|
178
|
+
# * `MAJOR`: CloudFormation updates the extension to the newest major
|
179
179
|
# version, if one is available.
|
180
180
|
#
|
181
|
-
# * `MINOR
|
181
|
+
# * `MINOR`: CloudFormation updates the extension to the newest minor
|
182
182
|
# version, if one is available.
|
183
183
|
# @return [String]
|
184
184
|
#
|
@@ -1992,14 +1992,14 @@ module Aws::CloudFormation
|
|
1992
1992
|
# The following is a list of possible values for the
|
1993
1993
|
# `AccountFilterType` operation.
|
1994
1994
|
#
|
1995
|
-
# * `INTERSECTION
|
1995
|
+
# * `INTERSECTION`: StackSets deploys to the accounts specified in
|
1996
1996
|
# `Accounts` parameter.
|
1997
1997
|
#
|
1998
|
-
# * `DIFFERENCE
|
1998
|
+
# * `DIFFERENCE`: StackSets excludes the accounts specified in
|
1999
1999
|
# `Accounts` parameter. This enables user to avoid certain accounts
|
2000
2000
|
# within an OU such as suspended accounts.
|
2001
2001
|
#
|
2002
|
-
# * `UNION
|
2002
|
+
# * `UNION`: StackSets includes additional accounts deployment
|
2003
2003
|
# targets.
|
2004
2004
|
#
|
2005
2005
|
# This is the default value if `AccountFilterType` is not provided.
|
@@ -2007,7 +2007,7 @@ module Aws::CloudFormation
|
|
2007
2007
|
# from a different OU in one request, which used to be two separate
|
2008
2008
|
# requests.
|
2009
2009
|
#
|
2010
|
-
# * `NONE
|
2010
|
+
# * `NONE`: Deploys to all the accounts in specified organizational
|
2011
2011
|
# units (OU).
|
2012
2012
|
# @return [String]
|
2013
2013
|
#
|
@@ -2409,23 +2409,23 @@ module Aws::CloudFormation
|
|
2409
2409
|
# Status of the stack's actual configuration compared to its expected
|
2410
2410
|
# configuration.
|
2411
2411
|
#
|
2412
|
-
# * `DRIFTED
|
2412
|
+
# * `DRIFTED`: The stack differs from its expected template
|
2413
2413
|
# configuration. A stack is considered to have drifted if one or
|
2414
2414
|
# more of its resources have drifted.
|
2415
2415
|
#
|
2416
|
-
# * `NOT_CHECKED
|
2417
|
-
#
|
2416
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked if the stack differs
|
2417
|
+
# from its expected template configuration.
|
2418
2418
|
#
|
2419
|
-
# * `IN_SYNC
|
2419
|
+
# * `IN_SYNC`: The stack's actual configuration matches its expected
|
2420
2420
|
# template configuration.
|
2421
2421
|
#
|
2422
|
-
# * `UNKNOWN
|
2422
|
+
# * `UNKNOWN`: This value is reserved for future use.
|
2423
2423
|
# @return [String]
|
2424
2424
|
#
|
2425
2425
|
# @!attribute [rw] detection_status
|
2426
2426
|
# The status of the stack drift detection operation.
|
2427
2427
|
#
|
2428
|
-
# * `DETECTION_COMPLETE
|
2428
|
+
# * `DETECTION_COMPLETE`: The stack drift detection operation has
|
2429
2429
|
# successfully completed for all resources in the stack that support
|
2430
2430
|
# drift detection. (Resources that don't currently support stack
|
2431
2431
|
# detection remain unchecked.)
|
@@ -2434,12 +2434,12 @@ module Aws::CloudFormation
|
|
2434
2434
|
# a filter for the stack drift detection operation, only the
|
2435
2435
|
# resources with those logical IDs are checked for drift.
|
2436
2436
|
#
|
2437
|
-
# * `DETECTION_FAILED
|
2438
|
-
#
|
2439
|
-
#
|
2440
|
-
#
|
2437
|
+
# * `DETECTION_FAILED`: The stack drift detection operation has failed
|
2438
|
+
# for at least one resource in the stack. Results will be available
|
2439
|
+
# for resources on which CloudFormation successfully completed drift
|
2440
|
+
# detection.
|
2441
2441
|
#
|
2442
|
-
# * `DETECTION_IN_PROGRESS
|
2442
|
+
# * `DETECTION_IN_PROGRESS`: The stack drift detection operation is
|
2443
2443
|
# currently in progress.
|
2444
2444
|
# @return [String]
|
2445
2445
|
#
|
@@ -2590,16 +2590,16 @@ module Aws::CloudFormation
|
|
2590
2590
|
# The resource drift status values to use as filters for the resource
|
2591
2591
|
# drift results returned.
|
2592
2592
|
#
|
2593
|
-
# * `DELETED
|
2593
|
+
# * `DELETED`: The resource differs from its expected template
|
2594
2594
|
# configuration in that the resource has been deleted.
|
2595
2595
|
#
|
2596
|
-
# * `MODIFIED
|
2596
|
+
# * `MODIFIED`: One or more resource properties differ from their
|
2597
2597
|
# expected template values.
|
2598
2598
|
#
|
2599
|
-
# * `IN_SYNC
|
2599
|
+
# * `IN_SYNC`: The resource's actual configuration matches its
|
2600
2600
|
# expected template configuration.
|
2601
2601
|
#
|
2602
|
-
# * `NOT_CHECKED
|
2602
|
+
# * `NOT_CHECKED`: CloudFormation doesn't currently return this
|
2603
2603
|
# value.
|
2604
2604
|
# @return [Array<String>]
|
2605
2605
|
#
|
@@ -3030,19 +3030,19 @@ module Aws::CloudFormation
|
|
3030
3030
|
# CloudFormation doesn't return this information for public
|
3031
3031
|
# extensions, whether they are activated in your account.
|
3032
3032
|
#
|
3033
|
-
# * `PASSED
|
3033
|
+
# * `PASSED`: The extension has passed all its contract tests.
|
3034
3034
|
#
|
3035
3035
|
# An extension must have a test status of `PASSED` before it can be
|
3036
3036
|
# published. For more information, see [Publishing extensions to
|
3037
3037
|
# make them available for public use][1] in the *CloudFormation
|
3038
3038
|
# Command Line Interface User Guide*.
|
3039
3039
|
#
|
3040
|
-
# * `FAILED
|
3040
|
+
# * `FAILED`: The extension has failed one or more contract tests.
|
3041
3041
|
#
|
3042
|
-
# * `IN_PROGRESS
|
3043
|
-
#
|
3042
|
+
# * `IN_PROGRESS`: Contract tests are currently being performed on the
|
3043
|
+
# extension.
|
3044
3044
|
#
|
3045
|
-
# * `NOT_TESTED
|
3045
|
+
# * `NOT_TESTED`: Contract tests haven't been performed on the
|
3046
3046
|
# extension.
|
3047
3047
|
#
|
3048
3048
|
#
|
@@ -3083,14 +3083,14 @@ module Aws::CloudFormation
|
|
3083
3083
|
#
|
3084
3084
|
# Valid values include:
|
3085
3085
|
#
|
3086
|
-
# * `FULLY_MUTABLE
|
3086
|
+
# * `FULLY_MUTABLE`: The resource type includes an update handler to
|
3087
3087
|
# process updates to the type during stack update operations.
|
3088
3088
|
#
|
3089
|
-
# * `IMMUTABLE
|
3090
|
-
#
|
3091
|
-
#
|
3089
|
+
# * `IMMUTABLE`: The resource type doesn't include an update handler,
|
3090
|
+
# so the type can't be updated and must instead be replaced during
|
3091
|
+
# stack update operations.
|
3092
3092
|
#
|
3093
|
-
# * `NON_PROVISIONABLE
|
3093
|
+
# * `NON_PROVISIONABLE`: The resource type doesn't include all the
|
3094
3094
|
# following handlers, and therefore can't actually be provisioned.
|
3095
3095
|
#
|
3096
3096
|
# * create
|
@@ -3105,11 +3105,11 @@ module Aws::CloudFormation
|
|
3105
3105
|
#
|
3106
3106
|
# Valid values include:
|
3107
3107
|
#
|
3108
|
-
# * `LIVE
|
3108
|
+
# * `LIVE`: The extension is activated or registered and can be used
|
3109
3109
|
# in CloudFormation operations, dependent on its provisioning
|
3110
3110
|
# behavior and visibility scope.
|
3111
3111
|
#
|
3112
|
-
# * `DEPRECATED
|
3112
|
+
# * `DEPRECATED`: The extension has been deactivated or deregistered
|
3113
3113
|
# and can no longer be used in CloudFormation operations.
|
3114
3114
|
#
|
3115
3115
|
# For public third-party extensions, CloudFormation returns `null`.
|
@@ -3158,11 +3158,11 @@ module Aws::CloudFormation
|
|
3158
3158
|
#
|
3159
3159
|
# Valid values include:
|
3160
3160
|
#
|
3161
|
-
# * `PRIVATE
|
3161
|
+
# * `PRIVATE`: The extension is only visible and usable within the
|
3162
3162
|
# account in which it is registered. CloudFormation marks any
|
3163
3163
|
# extensions you register as `PRIVATE`.
|
3164
3164
|
#
|
3165
|
-
# * `PUBLIC
|
3165
|
+
# * `PUBLIC`: The extension is publicly visible and usable within any
|
3166
3166
|
# Amazon Web Services account.
|
3167
3167
|
# @return [String]
|
3168
3168
|
#
|
@@ -4691,11 +4691,11 @@ module Aws::CloudFormation
|
|
4691
4691
|
#
|
4692
4692
|
# Valid values include:
|
4693
4693
|
#
|
4694
|
-
# * `LIVE
|
4694
|
+
# * `LIVE`: The extension version is registered and can be used in
|
4695
4695
|
# CloudFormation operations, dependent on its provisioning behavior
|
4696
4696
|
# and visibility scope.
|
4697
4697
|
#
|
4698
|
-
# * `DEPRECATED
|
4698
|
+
# * `DEPRECATED`: The extension version has been deregistered and can
|
4699
4699
|
# no longer be used in CloudFormation operations.
|
4700
4700
|
#
|
4701
4701
|
# The default is `LIVE`.
|
@@ -4749,7 +4749,7 @@ module Aws::CloudFormation
|
|
4749
4749
|
#
|
4750
4750
|
# Valid values include:
|
4751
4751
|
#
|
4752
|
-
# * `PRIVATE
|
4752
|
+
# * `PRIVATE`: Extensions that are visible and usable within this
|
4753
4753
|
# account and region. This includes:
|
4754
4754
|
#
|
4755
4755
|
# * Private extensions you have registered in this account and
|
@@ -4758,8 +4758,8 @@ module Aws::CloudFormation
|
|
4758
4758
|
# * Public extensions that you have activated in this account and
|
4759
4759
|
# region.
|
4760
4760
|
#
|
4761
|
-
# * `PUBLIC
|
4762
|
-
#
|
4761
|
+
# * `PUBLIC`: Extensions that are publicly visible and available to be
|
4762
|
+
# activated within any Amazon Web Services account. This includes
|
4763
4763
|
# extensions from Amazon Web Services, in addition to third-party
|
4764
4764
|
# publishers.
|
4765
4765
|
#
|
@@ -4774,14 +4774,14 @@ module Aws::CloudFormation
|
|
4774
4774
|
#
|
4775
4775
|
# Valid values include:
|
4776
4776
|
#
|
4777
|
-
# * `FULLY_MUTABLE
|
4777
|
+
# * `FULLY_MUTABLE`: The resource type includes an update handler to
|
4778
4778
|
# process updates to the type during stack update operations.
|
4779
4779
|
#
|
4780
|
-
# * `IMMUTABLE
|
4781
|
-
#
|
4782
|
-
#
|
4780
|
+
# * `IMMUTABLE`: The resource type doesn't include an update handler,
|
4781
|
+
# so the type can't be updated and must instead be replaced during
|
4782
|
+
# stack update operations.
|
4783
4783
|
#
|
4784
|
-
# * `NON_PROVISIONABLE
|
4784
|
+
# * `NON_PROVISIONABLE`: The resource type doesn't include create,
|
4785
4785
|
# read, and delete handlers, and therefore can't actually be
|
4786
4786
|
# provisioned.
|
4787
4787
|
#
|
@@ -4794,10 +4794,10 @@ module Aws::CloudFormation
|
|
4794
4794
|
#
|
4795
4795
|
# Valid values include:
|
4796
4796
|
#
|
4797
|
-
# * `LIVE
|
4797
|
+
# * `LIVE`: The extension is registered for use in CloudFormation
|
4798
4798
|
# operations.
|
4799
4799
|
#
|
4800
|
-
# * `DEPRECATED
|
4800
|
+
# * `DEPRECATED`: The extension has been deregistered and can no
|
4801
4801
|
# longer be used in CloudFormation operations.
|
4802
4802
|
# @return [String]
|
4803
4803
|
#
|
@@ -5190,13 +5190,13 @@ module Aws::CloudFormation
|
|
5190
5190
|
# @!attribute [rw] difference_type
|
5191
5191
|
# The type of property difference.
|
5192
5192
|
#
|
5193
|
-
# * `ADD
|
5193
|
+
# * `ADD`: A value has been added to a resource property that's an
|
5194
5194
|
# array or list data type.
|
5195
5195
|
#
|
5196
|
-
# * `REMOVE
|
5196
|
+
# * `REMOVE`: The property has been removed from the current resource
|
5197
5197
|
# configuration.
|
5198
5198
|
#
|
5199
|
-
# * `NOT_EQUAL
|
5199
|
+
# * `NOT_EQUAL`: The current property value differs from its expected
|
5200
5200
|
# value (as defined in the stack template and any values specified
|
5201
5201
|
# as template parameters).
|
5202
5202
|
# @return [String]
|
@@ -5409,12 +5409,12 @@ module Aws::CloudFormation
|
|
5409
5409
|
# We suggest that extension names adhere to the following patterns:
|
5410
5410
|
#
|
5411
5411
|
# * For resource types,
|
5412
|
-
# *company\_or\_organization
|
5412
|
+
# *company\_or\_organization*::*service*::*type*.
|
5413
5413
|
#
|
5414
5414
|
# * For modules,
|
5415
|
-
# *company\_or\_organization
|
5415
|
+
# *company\_or\_organization*::*service*::*type*::MODULE.
|
5416
5416
|
#
|
5417
|
-
# * For hooks, *MyCompany
|
5417
|
+
# * For hooks, *MyCompany*::*Testing*::*MyTestHook*.
|
5418
5418
|
#
|
5419
5419
|
# <note markdown="1"> The following organization namespaces are reserved and can't be
|
5420
5420
|
# used in your extension names:
|
@@ -6229,9 +6229,9 @@ module Aws::CloudFormation
|
|
6229
6229
|
# @!attribute [rw] disable_rollback
|
6230
6230
|
# Boolean to enable or disable rollback on stack creation failures:
|
6231
6231
|
#
|
6232
|
-
# * `true
|
6232
|
+
# * `true`: disable rollback.
|
6233
6233
|
#
|
6234
|
-
# * `false
|
6234
|
+
# * `false`: enable rollback.
|
6235
6235
|
# @return [Boolean]
|
6236
6236
|
#
|
6237
6237
|
# @!attribute [rw] notification_arns
|
@@ -6354,17 +6354,17 @@ module Aws::CloudFormation
|
|
6354
6354
|
# Status of the stack's actual configuration compared to its expected
|
6355
6355
|
# template configuration.
|
6356
6356
|
#
|
6357
|
-
# * `DRIFTED
|
6357
|
+
# * `DRIFTED`: The stack differs from its expected template
|
6358
6358
|
# configuration. A stack is considered to have drifted if one or
|
6359
6359
|
# more of its resources have drifted.
|
6360
6360
|
#
|
6361
|
-
# * `NOT_CHECKED
|
6362
|
-
#
|
6361
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked if the stack differs
|
6362
|
+
# from its expected template configuration.
|
6363
6363
|
#
|
6364
|
-
# * `IN_SYNC
|
6364
|
+
# * `IN_SYNC`: The stack's actual configuration matches its expected
|
6365
6365
|
# template configuration.
|
6366
6366
|
#
|
6367
|
-
# * `UNKNOWN
|
6367
|
+
# * `UNKNOWN`: This value is reserved for future use.
|
6368
6368
|
# @return [String]
|
6369
6369
|
#
|
6370
6370
|
# @!attribute [rw] last_check_timestamp
|
@@ -6392,17 +6392,17 @@ module Aws::CloudFormation
|
|
6392
6392
|
# Status of the stack's actual configuration compared to its expected
|
6393
6393
|
# template configuration.
|
6394
6394
|
#
|
6395
|
-
# * `DRIFTED
|
6395
|
+
# * `DRIFTED`: The stack differs from its expected template
|
6396
6396
|
# configuration. A stack is considered to have drifted if one or
|
6397
6397
|
# more of its resources have drifted.
|
6398
6398
|
#
|
6399
|
-
# * `NOT_CHECKED
|
6400
|
-
#
|
6399
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked if the stack differs
|
6400
|
+
# from its expected template configuration.
|
6401
6401
|
#
|
6402
|
-
# * `IN_SYNC
|
6402
|
+
# * `IN_SYNC`: The stack's actual configuration matches its expected
|
6403
6403
|
# template configuration.
|
6404
6404
|
#
|
6405
|
-
# * `UNKNOWN
|
6405
|
+
# * `UNKNOWN`: This value is reserved for future use.
|
6406
6406
|
# @return [String]
|
6407
6407
|
#
|
6408
6408
|
# @!attribute [rw] last_check_timestamp
|
@@ -6572,14 +6572,14 @@ module Aws::CloudFormation
|
|
6572
6572
|
# The status of the stack instance, in terms of its synchronization
|
6573
6573
|
# with its associated stack set.
|
6574
6574
|
#
|
6575
|
-
# * `INOPERABLE
|
6575
|
+
# * `INOPERABLE`: A `DeleteStackInstances` operation has failed and
|
6576
6576
|
# left the stack in an unstable state. Stacks in this state are
|
6577
6577
|
# excluded from further `UpdateStackSet` operations. You might need
|
6578
6578
|
# to perform a `DeleteStackInstances` operation, with `RetainStacks`
|
6579
6579
|
# set to `true`, to delete the stack instance, and then delete the
|
6580
6580
|
# stack manually.
|
6581
6581
|
#
|
6582
|
-
# * `OUTDATED
|
6582
|
+
# * `OUTDATED`: The stack isn't currently up to date with the stack
|
6583
6583
|
# set because:
|
6584
6584
|
#
|
6585
6585
|
# * The associated stack failed during a `CreateStackSet` or
|
@@ -6589,7 +6589,7 @@ module Aws::CloudFormation
|
|
6589
6589
|
# operation that failed or was stopped before the stack was
|
6590
6590
|
# created or updated.
|
6591
6591
|
#
|
6592
|
-
# * `CURRENT
|
6592
|
+
# * `CURRENT`: The stack is currently up to date with the stack set.
|
6593
6593
|
# @return [String]
|
6594
6594
|
#
|
6595
6595
|
# @!attribute [rw] stack_instance_status
|
@@ -6616,18 +6616,18 @@ module Aws::CloudFormation
|
|
6616
6616
|
# expected template and parameter configuration of the stack set to
|
6617
6617
|
# which it belongs.
|
6618
6618
|
#
|
6619
|
-
# * `DRIFTED
|
6619
|
+
# * `DRIFTED`: The stack differs from the expected template and
|
6620
6620
|
# parameter configuration of the stack set to which it belongs. A
|
6621
6621
|
# stack instance is considered to have drifted if one or more of the
|
6622
6622
|
# resources in the associated stack have drifted.
|
6623
6623
|
#
|
6624
|
-
# * `NOT_CHECKED
|
6624
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked if the stack
|
6625
6625
|
# instance differs from its expected stack set configuration.
|
6626
6626
|
#
|
6627
|
-
# * `IN_SYNC
|
6627
|
+
# * `IN_SYNC`: The stack instance's actual configuration matches its
|
6628
6628
|
# expected stack set configuration.
|
6629
6629
|
#
|
6630
|
-
# * `UNKNOWN
|
6630
|
+
# * `UNKNOWN`: This value is reserved for future use.
|
6631
6631
|
# @return [String]
|
6632
6632
|
#
|
6633
6633
|
# @!attribute [rw] last_drift_check_timestamp
|
@@ -6663,30 +6663,30 @@ module Aws::CloudFormation
|
|
6663
6663
|
# The detailed status of the stack instance.
|
6664
6664
|
#
|
6665
6665
|
# @!attribute [rw] detailed_status
|
6666
|
-
# * `CANCELLED
|
6667
|
-
#
|
6668
|
-
#
|
6669
|
-
#
|
6666
|
+
# * `CANCELLED`: The operation in the specified account and Region has
|
6667
|
+
# been canceled. This is either because a user has stopped the stack
|
6668
|
+
# set operation, or because the failure tolerance of the stack set
|
6669
|
+
# operation has been exceeded.
|
6670
6670
|
#
|
6671
|
-
# * `FAILED
|
6671
|
+
# * `FAILED`: The operation in the specified account and Region
|
6672
6672
|
# failed. If the stack set operation fails in enough accounts within
|
6673
6673
|
# a Region, the failure tolerance for the stack set operation as a
|
6674
6674
|
# whole might be exceeded.
|
6675
6675
|
#
|
6676
|
-
# * `INOPERABLE
|
6676
|
+
# * `INOPERABLE`: A `DeleteStackInstances` operation has failed and
|
6677
6677
|
# left the stack in an unstable state. Stacks in this state are
|
6678
6678
|
# excluded from further `UpdateStackSet` operations. You might need
|
6679
6679
|
# to perform a `DeleteStackInstances` operation, with `RetainStacks`
|
6680
6680
|
# set to `true`, to delete the stack instance, and then delete the
|
6681
6681
|
# stack manually.
|
6682
6682
|
#
|
6683
|
-
# * `PENDING
|
6683
|
+
# * `PENDING`: The operation in the specified account and Region has
|
6684
6684
|
# yet to start.
|
6685
6685
|
#
|
6686
|
-
# * `RUNNING
|
6686
|
+
# * `RUNNING`: The operation in the specified account and Region is
|
6687
6687
|
# currently in progress.
|
6688
6688
|
#
|
6689
|
-
# * `SUCCEEDED
|
6689
|
+
# * `SUCCEEDED`: The operation in the specified account and Region
|
6690
6690
|
# completed successfully.
|
6691
6691
|
# @return [String]
|
6692
6692
|
#
|
@@ -6749,14 +6749,14 @@ module Aws::CloudFormation
|
|
6749
6749
|
# The status of the stack instance, in terms of its synchronization
|
6750
6750
|
# with its associated stack set.
|
6751
6751
|
#
|
6752
|
-
# * `INOPERABLE
|
6752
|
+
# * `INOPERABLE`: A `DeleteStackInstances` operation has failed and
|
6753
6753
|
# left the stack in an unstable state. Stacks in this state are
|
6754
6754
|
# excluded from further `UpdateStackSet` operations. You might need
|
6755
6755
|
# to perform a `DeleteStackInstances` operation, with `RetainStacks`
|
6756
6756
|
# set to `true`, to delete the stack instance, and then delete the
|
6757
6757
|
# stack manually.
|
6758
6758
|
#
|
6759
|
-
# * `OUTDATED
|
6759
|
+
# * `OUTDATED`: The stack isn't currently up to date with the stack
|
6760
6760
|
# set because:
|
6761
6761
|
#
|
6762
6762
|
# * The associated stack failed during a `CreateStackSet` or
|
@@ -6766,7 +6766,7 @@ module Aws::CloudFormation
|
|
6766
6766
|
# operation that failed or was stopped before the stack was
|
6767
6767
|
# created or updated.
|
6768
6768
|
#
|
6769
|
-
# * `CURRENT
|
6769
|
+
# * `CURRENT`: The stack is currently up to date with the stack set.
|
6770
6770
|
# @return [String]
|
6771
6771
|
#
|
6772
6772
|
# @!attribute [rw] status_reason
|
@@ -6793,18 +6793,18 @@ module Aws::CloudFormation
|
|
6793
6793
|
# expected template and parameter configuration of the stack set to
|
6794
6794
|
# which it belongs.
|
6795
6795
|
#
|
6796
|
-
# * `DRIFTED
|
6796
|
+
# * `DRIFTED`: The stack differs from the expected template and
|
6797
6797
|
# parameter configuration of the stack set to which it belongs. A
|
6798
6798
|
# stack instance is considered to have drifted if one or more of the
|
6799
6799
|
# resources in the associated stack have drifted.
|
6800
6800
|
#
|
6801
|
-
# * `NOT_CHECKED
|
6801
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked if the stack
|
6802
6802
|
# instance differs from its expected stack set configuration.
|
6803
6803
|
#
|
6804
|
-
# * `IN_SYNC
|
6804
|
+
# * `IN_SYNC`: The stack instance's actual configuration matches its
|
6805
6805
|
# expected stack set configuration.
|
6806
6806
|
#
|
6807
|
-
# * `UNKNOWN
|
6807
|
+
# * `UNKNOWN`: This value is reserved for future use.
|
6808
6808
|
# @return [String]
|
6809
6809
|
#
|
6810
6810
|
# @!attribute [rw] last_drift_check_timestamp
|
@@ -7086,17 +7086,17 @@ module Aws::CloudFormation
|
|
7086
7086
|
# Status of the resource's actual configuration compared to its
|
7087
7087
|
# expected configuration.
|
7088
7088
|
#
|
7089
|
-
# * `DELETED
|
7089
|
+
# * `DELETED`: The resource differs from its expected template
|
7090
7090
|
# configuration because the resource has been deleted.
|
7091
7091
|
#
|
7092
|
-
# * `MODIFIED
|
7092
|
+
# * `MODIFIED`: One or more resource properties differ from their
|
7093
7093
|
# expected values (as defined in the stack template and any values
|
7094
7094
|
# specified as template parameters).
|
7095
7095
|
#
|
7096
|
-
# * `IN_SYNC
|
7096
|
+
# * `IN_SYNC`: The resource's actual configuration matches its
|
7097
7097
|
# expected template configuration.
|
7098
7098
|
#
|
7099
|
-
# * `NOT_CHECKED
|
7099
|
+
# * `NOT_CHECKED`: CloudFormation does not currently return this
|
7100
7100
|
# value.
|
7101
7101
|
# @return [String]
|
7102
7102
|
#
|
@@ -7137,19 +7137,19 @@ module Aws::CloudFormation
|
|
7137
7137
|
# Status of the resource's actual configuration compared to its
|
7138
7138
|
# expected configuration
|
7139
7139
|
#
|
7140
|
-
# * `DELETED
|
7141
|
-
#
|
7140
|
+
# * `DELETED`: The resource differs from its expected configuration in
|
7141
|
+
# that it has been deleted.
|
7142
7142
|
#
|
7143
|
-
# * `MODIFIED
|
7143
|
+
# * `MODIFIED`: The resource differs from its expected configuration.
|
7144
7144
|
#
|
7145
|
-
# * `NOT_CHECKED
|
7145
|
+
# * `NOT_CHECKED`: CloudFormation has not checked if the resource
|
7146
7146
|
# differs from its expected configuration.
|
7147
7147
|
#
|
7148
7148
|
# Any resources that do not currently support drift detection have a
|
7149
7149
|
# status of `NOT_CHECKED`. For more information, see [Resources that
|
7150
7150
|
# Support Drift Detection][1].
|
7151
7151
|
#
|
7152
|
-
# * `IN_SYNC
|
7152
|
+
# * `IN_SYNC`: The resource's actual configuration matches its
|
7153
7153
|
# expected configuration.
|
7154
7154
|
#
|
7155
7155
|
#
|
@@ -7179,12 +7179,12 @@ module Aws::CloudFormation
|
|
7179
7179
|
# Status of the resource's actual configuration compared to its
|
7180
7180
|
# expected configuration.
|
7181
7181
|
#
|
7182
|
-
# * `DELETED
|
7183
|
-
#
|
7182
|
+
# * `DELETED`: The resource differs from its expected configuration in
|
7183
|
+
# that it has been deleted.
|
7184
7184
|
#
|
7185
|
-
# * `MODIFIED
|
7185
|
+
# * `MODIFIED`: The resource differs from its expected configuration.
|
7186
7186
|
#
|
7187
|
-
# * `NOT_CHECKED
|
7187
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked if the resource
|
7188
7188
|
# differs from its expected configuration.
|
7189
7189
|
#
|
7190
7190
|
# Any resources that don't currently support drift detection have a
|
@@ -7196,7 +7196,7 @@ module Aws::CloudFormation
|
|
7196
7196
|
# during rollback operations, see [Continue Rolling Back an
|
7197
7197
|
# Update][2] in the CloudFormation User Guide.
|
7198
7198
|
#
|
7199
|
-
# * `IN_SYNC
|
7199
|
+
# * `IN_SYNC`: The resource's actual configuration matches its
|
7200
7200
|
# expected configuration.
|
7201
7201
|
#
|
7202
7202
|
#
|
@@ -7409,6 +7409,9 @@ module Aws::CloudFormation
|
|
7409
7409
|
# concurrently and queues conflicting operations.
|
7410
7410
|
# @return [Types::ManagedExecution]
|
7411
7411
|
#
|
7412
|
+
# @!attribute [rw] regions
|
7413
|
+
# @return [Array<String>]
|
7414
|
+
#
|
7412
7415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
7413
7416
|
#
|
7414
7417
|
class StackSet < Struct.new(
|
@@ -7427,7 +7430,8 @@ module Aws::CloudFormation
|
|
7427
7430
|
:auto_deployment,
|
7428
7431
|
:permission_model,
|
7429
7432
|
:organizational_unit_ids,
|
7430
|
-
:managed_execution
|
7433
|
+
:managed_execution,
|
7434
|
+
:regions)
|
7431
7435
|
SENSITIVE = []
|
7432
7436
|
include Aws::Structure
|
7433
7437
|
end
|
@@ -7455,15 +7459,15 @@ module Aws::CloudFormation
|
|
7455
7459
|
# have drifted from their expected template and parameter
|
7456
7460
|
# configuration.
|
7457
7461
|
#
|
7458
|
-
# * `DRIFTED
|
7462
|
+
# * `DRIFTED`: One or more of the stack instances belonging to the
|
7459
7463
|
# stack set stack differs from the expected template and parameter
|
7460
7464
|
# configuration. A stack instance is considered to have drifted if
|
7461
7465
|
# one or more of the resources in the associated stack have drifted.
|
7462
7466
|
#
|
7463
|
-
# * `NOT_CHECKED
|
7467
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked the stack set for
|
7464
7468
|
# drift.
|
7465
7469
|
#
|
7466
|
-
# * `IN_SYNC
|
7470
|
+
# * `IN_SYNC`: All of the stack instances belonging to the stack set
|
7467
7471
|
# stack match from the expected template and parameter
|
7468
7472
|
# configuration.
|
7469
7473
|
# @return [String]
|
@@ -7471,19 +7475,19 @@ module Aws::CloudFormation
|
|
7471
7475
|
# @!attribute [rw] drift_detection_status
|
7472
7476
|
# The status of the stack set drift detection operation.
|
7473
7477
|
#
|
7474
|
-
# * `COMPLETED
|
7478
|
+
# * `COMPLETED`: The drift detection operation completed without
|
7475
7479
|
# failing on any stack instances.
|
7476
7480
|
#
|
7477
|
-
# * `FAILED
|
7481
|
+
# * `FAILED`: The drift detection operation exceeded the specified
|
7478
7482
|
# failure tolerance.
|
7479
7483
|
#
|
7480
|
-
# * `PARTIAL_SUCCESS
|
7481
|
-
#
|
7484
|
+
# * `PARTIAL_SUCCESS`: The drift detection operation completed without
|
7485
|
+
# exceeding the failure tolerance for the operation.
|
7482
7486
|
#
|
7483
|
-
# * `IN_PROGRESS
|
7487
|
+
# * `IN_PROGRESS`: The drift detection operation is currently being
|
7484
7488
|
# performed.
|
7485
7489
|
#
|
7486
|
-
# * `STOPPED
|
7490
|
+
# * `STOPPED`: The user has canceled the drift detection operation.
|
7487
7491
|
# @return [String]
|
7488
7492
|
#
|
7489
7493
|
# @!attribute [rw] last_drift_check_timestamp
|
@@ -7580,7 +7584,7 @@ module Aws::CloudFormation
|
|
7580
7584
|
# @!attribute [rw] status
|
7581
7585
|
# The status of the operation.
|
7582
7586
|
#
|
7583
|
-
# * `FAILED
|
7587
|
+
# * `FAILED`: The operation exceeded the specified failure tolerance.
|
7584
7588
|
# The failure tolerance value that you've set for an operation is
|
7585
7589
|
# applied for each Region during stack create and update operations.
|
7586
7590
|
# If the number of failed stacks within a Region exceeds the failure
|
@@ -7589,19 +7593,19 @@ module Aws::CloudFormation
|
|
7589
7593
|
# to `FAILED`, and CloudFormation cancels the operation in any
|
7590
7594
|
# remaining Regions.
|
7591
7595
|
#
|
7592
|
-
# * `QUEUED
|
7596
|
+
# * `QUEUED`: \[Service-managed permissions\] For automatic
|
7593
7597
|
# deployments that require a sequence of operations, the operation
|
7594
7598
|
# is queued to be performed. For more information, see the [stack
|
7595
7599
|
# set operation status codes][1] in the CloudFormation User Guide.
|
7596
7600
|
#
|
7597
|
-
# * `RUNNING
|
7601
|
+
# * `RUNNING`: The operation is currently being performed.
|
7598
7602
|
#
|
7599
|
-
# * `STOPPED
|
7603
|
+
# * `STOPPED`: The user has canceled the operation.
|
7600
7604
|
#
|
7601
|
-
# * `STOPPING
|
7605
|
+
# * `STOPPING`: The operation is in the process of stopping, at user
|
7602
7606
|
# request.
|
7603
7607
|
#
|
7604
|
-
# * `SUCCEEDED
|
7608
|
+
# * `SUCCEEDED`: The operation completed creating or updating all the
|
7605
7609
|
# specified stacks without exceeding the failure tolerance for the
|
7606
7610
|
# operation.
|
7607
7611
|
#
|
@@ -7824,25 +7828,25 @@ module Aws::CloudFormation
|
|
7824
7828
|
# The result status of the stack set operation for the given account
|
7825
7829
|
# in the given Region.
|
7826
7830
|
#
|
7827
|
-
# * `CANCELLED
|
7828
|
-
#
|
7829
|
-
#
|
7830
|
-
#
|
7831
|
+
# * `CANCELLED`: The operation in the specified account and Region has
|
7832
|
+
# been canceled. This is either because a user has stopped the stack
|
7833
|
+
# set operation, or because the failure tolerance of the stack set
|
7834
|
+
# operation has been exceeded.
|
7831
7835
|
#
|
7832
|
-
# * `FAILED
|
7836
|
+
# * `FAILED`: The operation in the specified account and Region
|
7833
7837
|
# failed.
|
7834
7838
|
#
|
7835
7839
|
# If the stack set operation fails in enough accounts within a
|
7836
7840
|
# Region, the failure tolerance for the stack set operation as a
|
7837
7841
|
# whole might be exceeded.
|
7838
7842
|
#
|
7839
|
-
# * `RUNNING
|
7843
|
+
# * `RUNNING`: The operation in the specified account and Region is
|
7840
7844
|
# currently in progress.
|
7841
7845
|
#
|
7842
|
-
# * `PENDING
|
7846
|
+
# * `PENDING`: The operation in the specified account and Region has
|
7843
7847
|
# yet to start.
|
7844
7848
|
#
|
7845
|
-
# * `SUCCEEDED
|
7849
|
+
# * `SUCCEEDED`: The operation in the specified account and Region
|
7846
7850
|
# completed successfully.
|
7847
7851
|
# @return [String]
|
7848
7852
|
#
|
@@ -7910,7 +7914,7 @@ module Aws::CloudFormation
|
|
7910
7914
|
# @!attribute [rw] status
|
7911
7915
|
# The overall status of the operation.
|
7912
7916
|
#
|
7913
|
-
# * `FAILED
|
7917
|
+
# * `FAILED`: The operation exceeded the specified failure tolerance.
|
7914
7918
|
# The failure tolerance value that you've set for an operation is
|
7915
7919
|
# applied for each Region during stack create and update operations.
|
7916
7920
|
# If the number of failed stacks within a Region exceeds the failure
|
@@ -7919,19 +7923,19 @@ module Aws::CloudFormation
|
|
7919
7923
|
# to `FAILED`, and CloudFormation cancels the operation in any
|
7920
7924
|
# remaining Regions.
|
7921
7925
|
#
|
7922
|
-
# * `QUEUED
|
7926
|
+
# * `QUEUED`: \[Service-managed permissions\] For automatic
|
7923
7927
|
# deployments that require a sequence of operations, the operation
|
7924
7928
|
# is queued to be performed. For more information, see the [stack
|
7925
7929
|
# set operation status codes][1] in the CloudFormation User Guide.
|
7926
7930
|
#
|
7927
|
-
# * `RUNNING
|
7931
|
+
# * `RUNNING`: The operation is currently being performed.
|
7928
7932
|
#
|
7929
|
-
# * `STOPPED
|
7933
|
+
# * `STOPPED`: The user has canceled the operation.
|
7930
7934
|
#
|
7931
|
-
# * `STOPPING
|
7935
|
+
# * `STOPPING`: The operation is in the process of stopping, at user
|
7932
7936
|
# request.
|
7933
7937
|
#
|
7934
|
-
# * `SUCCEEDED
|
7938
|
+
# * `SUCCEEDED`: The operation completed creating or updating all the
|
7935
7939
|
# specified stacks without exceeding the failure tolerance for the
|
7936
7940
|
# operation.
|
7937
7941
|
#
|
@@ -8044,19 +8048,19 @@ module Aws::CloudFormation
|
|
8044
8048
|
# have drifted from their expected template and parameter
|
8045
8049
|
# configuration.
|
8046
8050
|
#
|
8047
|
-
# * `DRIFTED
|
8051
|
+
# * `DRIFTED`: One or more of the stack instances belonging to the
|
8048
8052
|
# stack set stack differs from the expected template and parameter
|
8049
8053
|
# configuration. A stack instance is considered to have drifted if
|
8050
8054
|
# one or more of the resources in the associated stack have drifted.
|
8051
8055
|
#
|
8052
|
-
# * `NOT_CHECKED
|
8056
|
+
# * `NOT_CHECKED`: CloudFormation hasn't checked the stack set for
|
8053
8057
|
# drift.
|
8054
8058
|
#
|
8055
|
-
# * `IN_SYNC
|
8059
|
+
# * `IN_SYNC`: All the stack instances belonging to the stack set
|
8056
8060
|
# stack match from the expected template and parameter
|
8057
8061
|
# configuration.
|
8058
8062
|
#
|
8059
|
-
# * `UNKNOWN
|
8063
|
+
# * `UNKNOWN`: This value is reserved for future use.
|
8060
8064
|
# @return [String]
|
8061
8065
|
#
|
8062
8066
|
# @!attribute [rw] last_drift_check_timestamp
|
@@ -8499,13 +8503,13 @@ module Aws::CloudFormation
|
|
8499
8503
|
# @!attribute [rw] category
|
8500
8504
|
# The category of extensions to return.
|
8501
8505
|
#
|
8502
|
-
# * `REGISTERED
|
8506
|
+
# * `REGISTERED`: Private extensions that have been registered for
|
8503
8507
|
# this account and region.
|
8504
8508
|
#
|
8505
|
-
# * `ACTIVATED
|
8509
|
+
# * `ACTIVATED`: Public extensions that have been activated for this
|
8506
8510
|
# account and region.
|
8507
8511
|
#
|
8508
|
-
# * `THIRD_PARTY
|
8512
|
+
# * `THIRD_PARTY`: Extensions available for use from publishers other
|
8509
8513
|
# than Amazon. This includes:
|
8510
8514
|
#
|
8511
8515
|
# * Private extensions registered in the account.
|
@@ -8513,7 +8517,7 @@ module Aws::CloudFormation
|
|
8513
8517
|
# * Public extensions from publishers other than Amazon, whether
|
8514
8518
|
# activated or not.
|
8515
8519
|
#
|
8516
|
-
# * `AWS_TYPES
|
8520
|
+
# * `AWS_TYPES`: Extensions available for use from Amazon.
|
8517
8521
|
# @return [String]
|
8518
8522
|
#
|
8519
8523
|
# @!attribute [rw] publisher_id
|
@@ -267,6 +267,12 @@ module Aws::CloudFormation
|
|
267
267
|
"expected" => "UPDATE_ROLLBACK_COMPLETE",
|
268
268
|
"matcher" => "pathAny",
|
269
269
|
"state" => "failure"
|
270
|
+
},
|
271
|
+
{
|
272
|
+
"argument" => "stacks[].stack_status",
|
273
|
+
"expected" => "UPDATE_COMPLETE",
|
274
|
+
"matcher" => "pathAny",
|
275
|
+
"state" => "failure"
|
270
276
|
}
|
271
277
|
]
|
272
278
|
)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|