aws-sdk-cloudformation 1.40.0 → 1.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-cloudformation.rb +3 -2
- data/lib/aws-sdk-cloudformation/client.rb +71 -30
- data/lib/aws-sdk-cloudformation/client_api.rb +9 -0
- data/lib/aws-sdk-cloudformation/resource.rb +3 -4
- data/lib/aws-sdk-cloudformation/stack.rb +6 -8
- data/lib/aws-sdk-cloudformation/types.rb +71 -25
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b17b6305b2163dbf637353ee94248594383049c4304ee6a349de6fbba48b455d
|
4
|
+
data.tar.gz: 45e1420ba017c6daf008ebe2dfda1a8ca8d391a4812d51f27be7c8fce8c9bfcb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 673fe85f9b1349194e2935cbd1bf9970afe038f24d2d0c42ee67af7e5ba9db3aa2efd003b7d5147cf4da576fc72748fb8a8855236e3ec7223cff78a5db30a78b
|
7
|
+
data.tar.gz: 3d79db3e4eaf40f3674ed2f173ec6803eea8629e89b12e10f0880b6f112964063ee3c59907f1c94ac70cbb199378acb827a0ccfdc9e709d3adae05e64d03e0e0
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -49,9 +50,9 @@ require_relative 'aws-sdk-cloudformation/customizations'
|
|
49
50
|
#
|
50
51
|
# See {Errors} for more information.
|
51
52
|
#
|
52
|
-
#
|
53
|
+
# @!group service
|
53
54
|
module Aws::CloudFormation
|
54
55
|
|
55
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.45.0'
|
56
57
|
|
57
58
|
end
|
@@ -85,13 +85,28 @@ module Aws::CloudFormation
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::CloudFormation
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -490,6 +505,9 @@ module Aws::CloudFormation
|
|
490
505
|
# execute the change set by using the ExecuteChangeSet action. AWS
|
491
506
|
# CloudFormation doesn't make changes until you execute the change set.
|
492
507
|
#
|
508
|
+
# To create a change set for the entire stack hierachy, set
|
509
|
+
# `IncludeNestedStacks` to `True`.
|
510
|
+
#
|
493
511
|
# @option params [required, String] :stack_name
|
494
512
|
# The name or the unique ID of the stack for which you are creating a
|
495
513
|
# change set. AWS CloudFormation generates the change set by comparing
|
@@ -583,11 +601,10 @@ module Aws::CloudFormation
|
|
583
601
|
# <note markdown="1"> This capacity does not apply to creating change sets, and specifying
|
584
602
|
# it when creating change sets has no effect.
|
585
603
|
#
|
586
|
-
#
|
587
|
-
#
|
588
|
-
#
|
589
|
-
#
|
590
|
-
# specifying this capability.
|
604
|
+
# If you want to create a stack from a stack template that contains
|
605
|
+
# macros *and* nested stacks, you must create or update the stack
|
606
|
+
# directly from the template using the CreateStack or UpdateStack
|
607
|
+
# action, and specifying this capability.
|
591
608
|
#
|
592
609
|
# </note>
|
593
610
|
#
|
@@ -695,6 +712,11 @@ module Aws::CloudFormation
|
|
695
712
|
# @option params [Array<Types::ResourceToImport>] :resources_to_import
|
696
713
|
# The resources to import into your stack.
|
697
714
|
#
|
715
|
+
# @option params [Boolean] :include_nested_stacks
|
716
|
+
# Creates a change set for the all nested stacks specified in the
|
717
|
+
# template. The default behavior of this action is set to `False`. To
|
718
|
+
# include nested sets in a change set, specify `True`.
|
719
|
+
#
|
698
720
|
# @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
699
721
|
#
|
700
722
|
# * {Types::CreateChangeSetOutput#id #id} => String
|
@@ -747,6 +769,7 @@ module Aws::CloudFormation
|
|
747
769
|
# },
|
748
770
|
# },
|
749
771
|
# ],
|
772
|
+
# include_nested_stacks: false,
|
750
773
|
# })
|
751
774
|
#
|
752
775
|
# @example Response structure
|
@@ -892,10 +915,9 @@ module Aws::CloudFormation
|
|
892
915
|
# [AWS::Serverless][10] transforms, which are macros hosted by AWS
|
893
916
|
# CloudFormation.
|
894
917
|
#
|
895
|
-
#
|
896
|
-
#
|
897
|
-
#
|
898
|
-
# using this capability.
|
918
|
+
# If you want to create a stack from a stack template that contains
|
919
|
+
# macros *and* nested stacks, you must create the stack directly from
|
920
|
+
# the template using this capability.
|
899
921
|
#
|
900
922
|
# You should only create stacks directly from a stack template that
|
901
923
|
# contains macros if you know what processing the macro performs.
|
@@ -1461,6 +1483,11 @@ module Aws::CloudFormation
|
|
1461
1483
|
# If the call successfully completes, AWS CloudFormation successfully
|
1462
1484
|
# deleted the change set.
|
1463
1485
|
#
|
1486
|
+
# If `IncludeNestedStacks` specifies `True` during the creation of the
|
1487
|
+
# nested change set, then `DeleteChangeSet` will delete all change sets
|
1488
|
+
# that belong to the stacks hierarchy and will also delete all change
|
1489
|
+
# sets for nested stacks with the status of `REVIEW_IN_PROGRESS`.
|
1490
|
+
#
|
1464
1491
|
# @option params [required, String] :change_set_name
|
1465
1492
|
# The name or Amazon Resource Name (ARN) of the change set that you want
|
1466
1493
|
# to delete.
|
@@ -1809,6 +1836,9 @@ module Aws::CloudFormation
|
|
1809
1836
|
# * {Types::DescribeChangeSetOutput#tags #tags} => Array<Types::Tag>
|
1810
1837
|
# * {Types::DescribeChangeSetOutput#changes #changes} => Array<Types::Change>
|
1811
1838
|
# * {Types::DescribeChangeSetOutput#next_token #next_token} => String
|
1839
|
+
# * {Types::DescribeChangeSetOutput#include_nested_stacks #include_nested_stacks} => Boolean
|
1840
|
+
# * {Types::DescribeChangeSetOutput#parent_change_set_id #parent_change_set_id} => String
|
1841
|
+
# * {Types::DescribeChangeSetOutput#root_change_set_id #root_change_set_id} => String
|
1812
1842
|
#
|
1813
1843
|
# @example Request syntax with placeholder values
|
1814
1844
|
#
|
@@ -1832,7 +1862,7 @@ module Aws::CloudFormation
|
|
1832
1862
|
# resp.parameters[0].resolved_value #=> String
|
1833
1863
|
# resp.creation_time #=> Time
|
1834
1864
|
# resp.execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
|
1835
|
-
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_COMPLETE", "FAILED"
|
1865
|
+
# resp.status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "FAILED"
|
1836
1866
|
# resp.status_reason #=> String
|
1837
1867
|
# resp.notification_arns #=> Array
|
1838
1868
|
# resp.notification_arns[0] #=> String
|
@@ -1847,7 +1877,7 @@ module Aws::CloudFormation
|
|
1847
1877
|
# resp.tags[0].value #=> String
|
1848
1878
|
# resp.changes #=> Array
|
1849
1879
|
# resp.changes[0].type #=> String, one of "Resource"
|
1850
|
-
# resp.changes[0].resource_change.action #=> String, one of "Add", "Modify", "Remove", "Import"
|
1880
|
+
# resp.changes[0].resource_change.action #=> String, one of "Add", "Modify", "Remove", "Import", "Dynamic"
|
1851
1881
|
# resp.changes[0].resource_change.logical_resource_id #=> String
|
1852
1882
|
# resp.changes[0].resource_change.physical_resource_id #=> String
|
1853
1883
|
# resp.changes[0].resource_change.resource_type #=> String
|
@@ -1861,7 +1891,11 @@ module Aws::CloudFormation
|
|
1861
1891
|
# resp.changes[0].resource_change.details[0].evaluation #=> String, one of "Static", "Dynamic"
|
1862
1892
|
# resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic"
|
1863
1893
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
1894
|
+
# resp.changes[0].resource_change.change_set_id #=> String
|
1864
1895
|
# resp.next_token #=> String
|
1896
|
+
# resp.include_nested_stacks #=> Boolean
|
1897
|
+
# resp.parent_change_set_id #=> String
|
1898
|
+
# resp.root_change_set_id #=> String
|
1865
1899
|
#
|
1866
1900
|
#
|
1867
1901
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2971,6 +3005,9 @@ module Aws::CloudFormation
|
|
2971
3005
|
# enforces the policy during the update. You can't specify a temporary
|
2972
3006
|
# stack policy that overrides the current policy.
|
2973
3007
|
#
|
3008
|
+
# To create a change set for the entire stack hierachy,
|
3009
|
+
# `IncludeNestedStacks` must have been set to `True`.
|
3010
|
+
#
|
2974
3011
|
# @option params [required, String] :change_set_name
|
2975
3012
|
# The name or ARN of the change set that you want use to update the
|
2976
3013
|
# specified stack.
|
@@ -3245,10 +3282,13 @@ module Aws::CloudFormation
|
|
3245
3282
|
# resp.summaries[0].change_set_id #=> String
|
3246
3283
|
# resp.summaries[0].change_set_name #=> String
|
3247
3284
|
# resp.summaries[0].execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
|
3248
|
-
# resp.summaries[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_COMPLETE", "FAILED"
|
3285
|
+
# resp.summaries[0].status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "DELETE_PENDING", "DELETE_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "FAILED"
|
3249
3286
|
# resp.summaries[0].status_reason #=> String
|
3250
3287
|
# resp.summaries[0].creation_time #=> Time
|
3251
3288
|
# resp.summaries[0].description #=> String
|
3289
|
+
# resp.summaries[0].include_nested_stacks #=> Boolean
|
3290
|
+
# resp.summaries[0].parent_change_set_id #=> String
|
3291
|
+
# resp.summaries[0].root_change_set_id #=> String
|
3252
3292
|
# resp.next_token #=> String
|
3253
3293
|
#
|
3254
3294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets AWS API Documentation
|
@@ -4127,18 +4167,20 @@ module Aws::CloudFormation
|
|
4127
4167
|
# you want to register, see [submit][1] in the *CloudFormation CLI User
|
4128
4168
|
# Guide*.
|
4129
4169
|
#
|
4130
|
-
# <note markdown="1">
|
4131
|
-
#
|
4132
|
-
#
|
4133
|
-
#
|
4134
|
-
#
|
4170
|
+
# <note markdown="1"> The user registering the resource provider type must be able to access
|
4171
|
+
# the the schema handler package in the S3 bucket. That is, the user
|
4172
|
+
# needs to have [GetObject][2] permissions for the schema handler
|
4173
|
+
# package. For more information, see [Actions, Resources, and Condition
|
4174
|
+
# Keys for Amazon S3][3] in the *AWS Identity and Access Management User
|
4175
|
+
# Guide*.
|
4135
4176
|
#
|
4136
4177
|
# </note>
|
4137
4178
|
#
|
4138
4179
|
#
|
4139
4180
|
#
|
4140
4181
|
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-cli-submit.html
|
4141
|
-
# [2]: https://docs.aws.amazon.com/
|
4182
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
4183
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html
|
4142
4184
|
#
|
4143
4185
|
# @option params [Types::LoggingConfig] :logging_config
|
4144
4186
|
# Specifies logging configuration information for a type.
|
@@ -4496,10 +4538,9 @@ module Aws::CloudFormation
|
|
4496
4538
|
# [AWS::Serverless][10] transforms, which are macros hosted by AWS
|
4497
4539
|
# CloudFormation.
|
4498
4540
|
#
|
4499
|
-
#
|
4500
|
-
#
|
4501
|
-
#
|
4502
|
-
# using this capability.
|
4541
|
+
# If you want to update a stack from a stack template that contains
|
4542
|
+
# macros *and* nested stacks, you must update the stack directly from
|
4543
|
+
# the template using this capability.
|
4503
4544
|
#
|
4504
4545
|
# You should only update stacks directly from a stack template that
|
4505
4546
|
# contains macros if you know what processing the macro performs.
|
@@ -5317,7 +5358,7 @@ module Aws::CloudFormation
|
|
5317
5358
|
params: params,
|
5318
5359
|
config: config)
|
5319
5360
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5320
|
-
context[:gem_version] = '1.
|
5361
|
+
context[:gem_version] = '1.45.0'
|
5321
5362
|
Seahorse::Client::Request.new(handlers, context)
|
5322
5363
|
end
|
5323
5364
|
|
@@ -137,6 +137,7 @@ module Aws::CloudFormation
|
|
137
137
|
Imports = Shapes::ListShape.new(name: 'Imports')
|
138
138
|
InProgressStackInstancesCount = Shapes::IntegerShape.new(name: 'InProgressStackInstancesCount')
|
139
139
|
InSyncStackInstancesCount = Shapes::IntegerShape.new(name: 'InSyncStackInstancesCount')
|
140
|
+
IncludeNestedStacks = Shapes::BooleanShape.new(name: 'IncludeNestedStacks')
|
140
141
|
InsufficientCapabilitiesException = Shapes::StructureShape.new(name: 'InsufficientCapabilitiesException')
|
141
142
|
InvalidChangeSetStatusException = Shapes::StructureShape.new(name: 'InvalidChangeSetStatusException')
|
142
143
|
InvalidOperationException = Shapes::StructureShape.new(name: 'InvalidOperationException')
|
@@ -430,6 +431,9 @@ module Aws::CloudFormation
|
|
430
431
|
ChangeSetSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: ChangeSetStatusReason, location_name: "StatusReason"))
|
431
432
|
ChangeSetSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTime"))
|
432
433
|
ChangeSetSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
434
|
+
ChangeSetSummary.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
|
435
|
+
ChangeSetSummary.add_member(:parent_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ParentChangeSetId"))
|
436
|
+
ChangeSetSummary.add_member(:root_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "RootChangeSetId"))
|
433
437
|
ChangeSetSummary.struct_class = Types::ChangeSetSummary
|
434
438
|
|
435
439
|
Changes.member = Shapes::ShapeRef.new(shape: Change)
|
@@ -458,6 +462,7 @@ module Aws::CloudFormation
|
|
458
462
|
CreateChangeSetInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
459
463
|
CreateChangeSetInput.add_member(:change_set_type, Shapes::ShapeRef.new(shape: ChangeSetType, location_name: "ChangeSetType"))
|
460
464
|
CreateChangeSetInput.add_member(:resources_to_import, Shapes::ShapeRef.new(shape: ResourcesToImport, location_name: "ResourcesToImport"))
|
465
|
+
CreateChangeSetInput.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
|
461
466
|
CreateChangeSetInput.struct_class = Types::CreateChangeSetInput
|
462
467
|
|
463
468
|
CreateChangeSetOutput.add_member(:id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "Id"))
|
@@ -586,6 +591,9 @@ module Aws::CloudFormation
|
|
586
591
|
DescribeChangeSetOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
587
592
|
DescribeChangeSetOutput.add_member(:changes, Shapes::ShapeRef.new(shape: Changes, location_name: "Changes"))
|
588
593
|
DescribeChangeSetOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
594
|
+
DescribeChangeSetOutput.add_member(:include_nested_stacks, Shapes::ShapeRef.new(shape: IncludeNestedStacks, location_name: "IncludeNestedStacks"))
|
595
|
+
DescribeChangeSetOutput.add_member(:parent_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ParentChangeSetId"))
|
596
|
+
DescribeChangeSetOutput.add_member(:root_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "RootChangeSetId"))
|
589
597
|
DescribeChangeSetOutput.struct_class = Types::DescribeChangeSetOutput
|
590
598
|
|
591
599
|
DescribeStackDriftDetectionStatusInput.add_member(:stack_drift_detection_id, Shapes::ShapeRef.new(shape: StackDriftDetectionId, required: true, location_name: "StackDriftDetectionId"))
|
@@ -993,6 +1001,7 @@ module Aws::CloudFormation
|
|
993
1001
|
ResourceChange.add_member(:replacement, Shapes::ShapeRef.new(shape: Replacement, location_name: "Replacement"))
|
994
1002
|
ResourceChange.add_member(:scope, Shapes::ShapeRef.new(shape: Scope, location_name: "Scope"))
|
995
1003
|
ResourceChange.add_member(:details, Shapes::ShapeRef.new(shape: ResourceChangeDetails, location_name: "Details"))
|
1004
|
+
ResourceChange.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ChangeSetId"))
|
996
1005
|
ResourceChange.struct_class = Types::ResourceChange
|
997
1006
|
|
998
1007
|
ResourceChangeDetail.add_member(:target, Shapes::ShapeRef.new(shape: ResourceTargetDefinition, location_name: "Target"))
|
@@ -194,10 +194,9 @@ module Aws::CloudFormation
|
|
194
194
|
# [AWS::Serverless][10] transforms, which are macros hosted by AWS
|
195
195
|
# CloudFormation.
|
196
196
|
#
|
197
|
-
#
|
198
|
-
#
|
199
|
-
#
|
200
|
-
# using this capability.
|
197
|
+
# If you want to create a stack from a stack template that contains
|
198
|
+
# macros *and* nested stacks, you must create the stack directly from
|
199
|
+
# the template using this capability.
|
201
200
|
#
|
202
201
|
# You should only create stacks directly from a stack template that
|
203
202
|
# contains macros if you know what processing the macro performs.
|
@@ -540,10 +540,9 @@ module Aws::CloudFormation
|
|
540
540
|
# [AWS::Serverless][10] transforms, which are macros hosted by AWS
|
541
541
|
# CloudFormation.
|
542
542
|
#
|
543
|
-
#
|
544
|
-
#
|
545
|
-
#
|
546
|
-
# using this capability.
|
543
|
+
# If you want to create a stack from a stack template that contains
|
544
|
+
# macros *and* nested stacks, you must create the stack directly from
|
545
|
+
# the template using this capability.
|
547
546
|
#
|
548
547
|
# You should only create stacks directly from a stack template that
|
549
548
|
# contains macros if you know what processing the macro performs.
|
@@ -880,10 +879,9 @@ module Aws::CloudFormation
|
|
880
879
|
# [AWS::Serverless][10] transforms, which are macros hosted by AWS
|
881
880
|
# CloudFormation.
|
882
881
|
#
|
883
|
-
#
|
884
|
-
#
|
885
|
-
#
|
886
|
-
# using this capability.
|
882
|
+
# If you want to update a stack from a stack template that contains
|
883
|
+
# macros *and* nested stacks, you must update the stack directly from
|
884
|
+
# the template using this capability.
|
887
885
|
#
|
888
886
|
# You should only update stacks directly from a stack template that
|
889
887
|
# contains macros if you know what processing the macro performs.
|
@@ -273,6 +273,19 @@ module Aws::CloudFormation
|
|
273
273
|
# Descriptive information about the change set.
|
274
274
|
# @return [String]
|
275
275
|
#
|
276
|
+
# @!attribute [rw] include_nested_stacks
|
277
|
+
# Specifies the current setting of `IncludeNestedStacks` for the
|
278
|
+
# change set.
|
279
|
+
# @return [Boolean]
|
280
|
+
#
|
281
|
+
# @!attribute [rw] parent_change_set_id
|
282
|
+
# The parent change set ID.
|
283
|
+
# @return [String]
|
284
|
+
#
|
285
|
+
# @!attribute [rw] root_change_set_id
|
286
|
+
# The root change set ID.
|
287
|
+
# @return [String]
|
288
|
+
#
|
276
289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ChangeSetSummary AWS API Documentation
|
277
290
|
#
|
278
291
|
class ChangeSetSummary < Struct.new(
|
@@ -284,7 +297,10 @@ module Aws::CloudFormation
|
|
284
297
|
:status,
|
285
298
|
:status_reason,
|
286
299
|
:creation_time,
|
287
|
-
:description
|
300
|
+
:description,
|
301
|
+
:include_nested_stacks,
|
302
|
+
:parent_change_set_id,
|
303
|
+
:root_change_set_id)
|
288
304
|
SENSITIVE = []
|
289
305
|
include Aws::Structure
|
290
306
|
end
|
@@ -451,6 +467,7 @@ module Aws::CloudFormation
|
|
451
467
|
# },
|
452
468
|
# },
|
453
469
|
# ],
|
470
|
+
# include_nested_stacks: false,
|
454
471
|
# }
|
455
472
|
#
|
456
473
|
# @!attribute [rw] stack_name
|
@@ -551,11 +568,10 @@ module Aws::CloudFormation
|
|
551
568
|
# <note markdown="1"> This capacity does not apply to creating change sets, and
|
552
569
|
# specifying it when creating change sets has no effect.
|
553
570
|
#
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
557
|
-
#
|
558
|
-
# specifying this capability.
|
571
|
+
# If you want to create a stack from a stack template that contains
|
572
|
+
# macros *and* nested stacks, you must create or update the stack
|
573
|
+
# directly from the template using the CreateStack or UpdateStack
|
574
|
+
# action, and specifying this capability.
|
559
575
|
#
|
560
576
|
# </note>
|
561
577
|
#
|
@@ -675,6 +691,12 @@ module Aws::CloudFormation
|
|
675
691
|
# The resources to import into your stack.
|
676
692
|
# @return [Array<Types::ResourceToImport>]
|
677
693
|
#
|
694
|
+
# @!attribute [rw] include_nested_stacks
|
695
|
+
# Creates a change set for the all nested stacks specified in the
|
696
|
+
# template. The default behavior of this action is set to `False`. To
|
697
|
+
# include nested sets in a change set, specify `True`.
|
698
|
+
# @return [Boolean]
|
699
|
+
#
|
678
700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSetInput AWS API Documentation
|
679
701
|
#
|
680
702
|
class CreateChangeSetInput < Struct.new(
|
@@ -693,7 +715,8 @@ module Aws::CloudFormation
|
|
693
715
|
:client_token,
|
694
716
|
:description,
|
695
717
|
:change_set_type,
|
696
|
-
:resources_to_import
|
718
|
+
:resources_to_import,
|
719
|
+
:include_nested_stacks)
|
697
720
|
SENSITIVE = []
|
698
721
|
include Aws::Structure
|
699
722
|
end
|
@@ -895,10 +918,9 @@ module Aws::CloudFormation
|
|
895
918
|
# and [AWS::Serverless][10] transforms, which are macros hosted by
|
896
919
|
# AWS CloudFormation.
|
897
920
|
#
|
898
|
-
#
|
899
|
-
#
|
900
|
-
#
|
901
|
-
# template using this capability.
|
921
|
+
# If you want to create a stack from a stack template that contains
|
922
|
+
# macros *and* nested stacks, you must create the stack directly
|
923
|
+
# from the template using this capability.
|
902
924
|
#
|
903
925
|
# You should only create stacks directly from a stack template that
|
904
926
|
# contains macros if you know what processing the macro performs.
|
@@ -1988,6 +2010,20 @@ module Aws::CloudFormation
|
|
1988
2010
|
# of changes. If there is no additional page, this value is null.
|
1989
2011
|
# @return [String]
|
1990
2012
|
#
|
2013
|
+
# @!attribute [rw] include_nested_stacks
|
2014
|
+
# Verifies if `IncludeNestedStacks` is set to `True`.
|
2015
|
+
# @return [Boolean]
|
2016
|
+
#
|
2017
|
+
# @!attribute [rw] parent_change_set_id
|
2018
|
+
# Specifies the change set ID of the parent change set in the current
|
2019
|
+
# nested change set hierarchy.
|
2020
|
+
# @return [String]
|
2021
|
+
#
|
2022
|
+
# @!attribute [rw] root_change_set_id
|
2023
|
+
# Specifies the change set ID of the root change set in the current
|
2024
|
+
# nested change set hierarchy.
|
2025
|
+
# @return [String]
|
2026
|
+
#
|
1991
2027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSetOutput AWS API Documentation
|
1992
2028
|
#
|
1993
2029
|
class DescribeChangeSetOutput < Struct.new(
|
@@ -2006,7 +2042,10 @@ module Aws::CloudFormation
|
|
2006
2042
|
:capabilities,
|
2007
2043
|
:tags,
|
2008
2044
|
:changes,
|
2009
|
-
:next_token
|
2045
|
+
:next_token,
|
2046
|
+
:include_nested_stacks,
|
2047
|
+
:parent_change_set_id,
|
2048
|
+
:root_change_set_id)
|
2010
2049
|
SENSITIVE = []
|
2011
2050
|
include Aws::Structure
|
2012
2051
|
end
|
@@ -4668,18 +4707,20 @@ module Aws::CloudFormation
|
|
4668
4707
|
# you want to register, see [submit][1] in the *CloudFormation CLI
|
4669
4708
|
# User Guide*.
|
4670
4709
|
#
|
4671
|
-
# <note markdown="1">
|
4672
|
-
#
|
4673
|
-
#
|
4674
|
-
#
|
4675
|
-
#
|
4710
|
+
# <note markdown="1"> The user registering the resource provider type must be able to
|
4711
|
+
# access the the schema handler package in the S3 bucket. That is, the
|
4712
|
+
# user needs to have [GetObject][2] permissions for the schema handler
|
4713
|
+
# package. For more information, see [Actions, Resources, and
|
4714
|
+
# Condition Keys for Amazon S3][3] in the *AWS Identity and Access
|
4715
|
+
# Management User Guide*.
|
4676
4716
|
#
|
4677
4717
|
# </note>
|
4678
4718
|
#
|
4679
4719
|
#
|
4680
4720
|
#
|
4681
4721
|
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-cli-submit.html
|
4682
|
-
# [2]: https://docs.aws.amazon.com/
|
4722
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html
|
4723
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html
|
4683
4724
|
# @return [String]
|
4684
4725
|
#
|
4685
4726
|
# @!attribute [rw] logging_config
|
@@ -4743,8 +4784,9 @@ module Aws::CloudFormation
|
|
4743
4784
|
#
|
4744
4785
|
# @!attribute [rw] action
|
4745
4786
|
# The action that AWS CloudFormation takes on the resource, such as
|
4746
|
-
# `Add` (adds a new resource), `Modify` (changes a resource),
|
4747
|
-
# `
|
4787
|
+
# `Add` (adds a new resource), `Modify` (changes a resource), `Remove`
|
4788
|
+
# (deletes a resource), `Import` (imports a resource), or `Dynamic`
|
4789
|
+
# (exact action for the resource cannot be determined).
|
4748
4790
|
# @return [String]
|
4749
4791
|
#
|
4750
4792
|
# @!attribute [rw] logical_resource_id
|
@@ -4789,6 +4831,10 @@ module Aws::CloudFormation
|
|
4789
4831
|
# resource.
|
4790
4832
|
# @return [Array<Types::ResourceChangeDetail>]
|
4791
4833
|
#
|
4834
|
+
# @!attribute [rw] change_set_id
|
4835
|
+
# The change set ID of the nested change set.
|
4836
|
+
# @return [String]
|
4837
|
+
#
|
4792
4838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceChange AWS API Documentation
|
4793
4839
|
#
|
4794
4840
|
class ResourceChange < Struct.new(
|
@@ -4798,7 +4844,8 @@ module Aws::CloudFormation
|
|
4798
4844
|
:resource_type,
|
4799
4845
|
:replacement,
|
4800
4846
|
:scope,
|
4801
|
-
:details
|
4847
|
+
:details,
|
4848
|
+
:change_set_id)
|
4802
4849
|
SENSITIVE = []
|
4803
4850
|
include Aws::Structure
|
4804
4851
|
end
|
@@ -7515,10 +7562,9 @@ module Aws::CloudFormation
|
|
7515
7562
|
# and [AWS::Serverless][10] transforms, which are macros hosted by
|
7516
7563
|
# AWS CloudFormation.
|
7517
7564
|
#
|
7518
|
-
#
|
7519
|
-
#
|
7520
|
-
#
|
7521
|
-
# template using this capability.
|
7565
|
+
# If you want to update a stack from a stack template that contains
|
7566
|
+
# macros *and* nested stacks, you must update the stack directly
|
7567
|
+
# from the template using this capability.
|
7522
7568
|
#
|
7523
7569
|
# You should only update stacks directly from a stack template that
|
7524
7570
|
# contains macros if you know what processing the macro performs.
|
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.45.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: 2020-
|
11
|
+
date: 2020-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.109.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|