aws-sdk-cloudformation 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6a310d3db5b608ccf0c9ad49ffe046404e7d0bee522098185d4be197bcca103
4
- data.tar.gz: 50efc177b58f10b532300f9bcba63e0eda2013c511d8bec798103663ecf88a91
3
+ metadata.gz: b17b6305b2163dbf637353ee94248594383049c4304ee6a349de6fbba48b455d
4
+ data.tar.gz: 45e1420ba017c6daf008ebe2dfda1a8ca8d391a4812d51f27be7c8fce8c9bfcb
5
5
  SHA512:
6
- metadata.gz: cef1d6171b4b16c22900d80f3f86e1b9d045861233482eac934e8ed67c5c5354aa79163a78375b15c504c9f859850bf63c93f3f67b40f6937c8dd5cf0582310a
7
- data.tar.gz: ea164923229d4dc2cc4122eb4f9e321344ff9ae60ee0ac7e338c7689062390ac29b5a8eb7d1d86e07b4907409a57e127e4806b3e0c30727a96ccdb273b5cc934
6
+ metadata.gz: 673fe85f9b1349194e2935cbd1bf9970afe038f24d2d0c42ee67af7e5ba9db3aa2efd003b7d5147cf4da576fc72748fb8a8855236e3ec7223cff78a5db30a78b
7
+ data.tar.gz: 3d79db3e4eaf40f3674ed2f173ec6803eea8629e89b12e10f0880b6f112964063ee3c59907f1c94ac70cbb199378acb827a0ccfdc9e709d3adae05e64d03e0e0
@@ -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.44.0'
56
+ GEM_VERSION = '1.45.0'
57
57
 
58
58
  end
@@ -505,6 +505,9 @@ module Aws::CloudFormation
505
505
  # execute the change set by using the ExecuteChangeSet action. AWS
506
506
  # CloudFormation doesn't make changes until you execute the change set.
507
507
  #
508
+ # To create a change set for the entire stack hierachy, set
509
+ # `IncludeNestedStacks` to `True`.
510
+ #
508
511
  # @option params [required, String] :stack_name
509
512
  # The name or the unique ID of the stack for which you are creating a
510
513
  # change set. AWS CloudFormation generates the change set by comparing
@@ -598,11 +601,10 @@ module Aws::CloudFormation
598
601
  # <note markdown="1"> This capacity does not apply to creating change sets, and specifying
599
602
  # it when creating change sets has no effect.
600
603
  #
601
- # Also, change sets do not currently support nested stacks. If you
602
- # want to create a stack from a stack template that contains macros
603
- # *and* nested stacks, you must create or update the stack directly
604
- # from the template using the CreateStack or UpdateStack action, and
605
- # 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.
606
608
  #
607
609
  # </note>
608
610
  #
@@ -710,6 +712,11 @@ module Aws::CloudFormation
710
712
  # @option params [Array<Types::ResourceToImport>] :resources_to_import
711
713
  # The resources to import into your stack.
712
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
+ #
713
720
  # @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
714
721
  #
715
722
  # * {Types::CreateChangeSetOutput#id #id} => String
@@ -762,6 +769,7 @@ module Aws::CloudFormation
762
769
  # },
763
770
  # },
764
771
  # ],
772
+ # include_nested_stacks: false,
765
773
  # })
766
774
  #
767
775
  # @example Response structure
@@ -907,10 +915,9 @@ module Aws::CloudFormation
907
915
  # [AWS::Serverless][10] transforms, which are macros hosted by AWS
908
916
  # CloudFormation.
909
917
  #
910
- # Change sets do not currently support nested stacks. If you want to
911
- # create a stack from a stack template that contains macros *and*
912
- # nested stacks, you must create the stack directly from the template
913
- # 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.
914
921
  #
915
922
  # You should only create stacks directly from a stack template that
916
923
  # contains macros if you know what processing the macro performs.
@@ -1476,6 +1483,11 @@ module Aws::CloudFormation
1476
1483
  # If the call successfully completes, AWS CloudFormation successfully
1477
1484
  # deleted the change set.
1478
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
+ #
1479
1491
  # @option params [required, String] :change_set_name
1480
1492
  # The name or Amazon Resource Name (ARN) of the change set that you want
1481
1493
  # to delete.
@@ -1824,6 +1836,9 @@ module Aws::CloudFormation
1824
1836
  # * {Types::DescribeChangeSetOutput#tags #tags} => Array&lt;Types::Tag&gt;
1825
1837
  # * {Types::DescribeChangeSetOutput#changes #changes} => Array&lt;Types::Change&gt;
1826
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
1827
1842
  #
1828
1843
  # @example Request syntax with placeholder values
1829
1844
  #
@@ -1847,7 +1862,7 @@ module Aws::CloudFormation
1847
1862
  # resp.parameters[0].resolved_value #=> String
1848
1863
  # resp.creation_time #=> Time
1849
1864
  # resp.execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
1850
- # 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"
1851
1866
  # resp.status_reason #=> String
1852
1867
  # resp.notification_arns #=> Array
1853
1868
  # resp.notification_arns[0] #=> String
@@ -1862,7 +1877,7 @@ module Aws::CloudFormation
1862
1877
  # resp.tags[0].value #=> String
1863
1878
  # resp.changes #=> Array
1864
1879
  # resp.changes[0].type #=> String, one of "Resource"
1865
- # 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"
1866
1881
  # resp.changes[0].resource_change.logical_resource_id #=> String
1867
1882
  # resp.changes[0].resource_change.physical_resource_id #=> String
1868
1883
  # resp.changes[0].resource_change.resource_type #=> String
@@ -1876,7 +1891,11 @@ module Aws::CloudFormation
1876
1891
  # resp.changes[0].resource_change.details[0].evaluation #=> String, one of "Static", "Dynamic"
1877
1892
  # resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic"
1878
1893
  # resp.changes[0].resource_change.details[0].causing_entity #=> String
1894
+ # resp.changes[0].resource_change.change_set_id #=> String
1879
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
1880
1899
  #
1881
1900
  #
1882
1901
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2986,6 +3005,9 @@ module Aws::CloudFormation
2986
3005
  # enforces the policy during the update. You can't specify a temporary
2987
3006
  # stack policy that overrides the current policy.
2988
3007
  #
3008
+ # To create a change set for the entire stack hierachy,
3009
+ # `IncludeNestedStacks` must have been set to `True`.
3010
+ #
2989
3011
  # @option params [required, String] :change_set_name
2990
3012
  # The name or ARN of the change set that you want use to update the
2991
3013
  # specified stack.
@@ -3260,10 +3282,13 @@ module Aws::CloudFormation
3260
3282
  # resp.summaries[0].change_set_id #=> String
3261
3283
  # resp.summaries[0].change_set_name #=> String
3262
3284
  # resp.summaries[0].execution_status #=> String, one of "UNAVAILABLE", "AVAILABLE", "EXECUTE_IN_PROGRESS", "EXECUTE_COMPLETE", "EXECUTE_FAILED", "OBSOLETE"
3263
- # 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"
3264
3286
  # resp.summaries[0].status_reason #=> String
3265
3287
  # resp.summaries[0].creation_time #=> Time
3266
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
3267
3292
  # resp.next_token #=> String
3268
3293
  #
3269
3294
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets AWS API Documentation
@@ -4142,18 +4167,20 @@ module Aws::CloudFormation
4142
4167
  # you want to register, see [submit][1] in the *CloudFormation CLI User
4143
4168
  # Guide*.
4144
4169
  #
4145
- # <note markdown="1"> As part of registering a resource provider type, CloudFormation must
4146
- # be able to access the S3 bucket which contains the schema handler
4147
- # package for that resource provider. For more information, see [IAM
4148
- # Permissions for Registering a Resource Provider][2] in the *AWS
4149
- # CloudFormation User Guide*.
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*.
4150
4176
  #
4151
4177
  # </note>
4152
4178
  #
4153
4179
  #
4154
4180
  #
4155
4181
  # [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-cli-submit.html
4156
- # [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry.html#registry-register-permissions
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
4157
4184
  #
4158
4185
  # @option params [Types::LoggingConfig] :logging_config
4159
4186
  # Specifies logging configuration information for a type.
@@ -4511,10 +4538,9 @@ module Aws::CloudFormation
4511
4538
  # [AWS::Serverless][10] transforms, which are macros hosted by AWS
4512
4539
  # CloudFormation.
4513
4540
  #
4514
- # Change sets do not currently support nested stacks. If you want to
4515
- # update a stack from a stack template that contains macros *and*
4516
- # nested stacks, you must update the stack directly from the template
4517
- # 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.
4518
4544
  #
4519
4545
  # You should only update stacks directly from a stack template that
4520
4546
  # contains macros if you know what processing the macro performs.
@@ -5332,7 +5358,7 @@ module Aws::CloudFormation
5332
5358
  params: params,
5333
5359
  config: config)
5334
5360
  context[:gem_name] = 'aws-sdk-cloudformation'
5335
- context[:gem_version] = '1.44.0'
5361
+ context[:gem_version] = '1.45.0'
5336
5362
  Seahorse::Client::Request.new(handlers, context)
5337
5363
  end
5338
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
- # Change sets do not currently support nested stacks. If you want to
198
- # create a stack from a stack template that contains macros *and*
199
- # nested stacks, you must create the stack directly from the template
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
- # Change sets do not currently support nested stacks. If you want to
544
- # create a stack from a stack template that contains macros *and*
545
- # nested stacks, you must create the stack directly from the template
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
- # Change sets do not currently support nested stacks. If you want to
884
- # update a stack from a stack template that contains macros *and*
885
- # nested stacks, you must update the stack directly from the template
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
- # Also, change sets do not currently support nested stacks. If you
555
- # want to create a stack from a stack template that contains macros
556
- # *and* nested stacks, you must create or update the stack directly
557
- # from the template using the CreateStack or UpdateStack action, and
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
- # Change sets do not currently support nested stacks. If you want to
899
- # create a stack from a stack template that contains macros *and*
900
- # nested stacks, you must create the stack directly from the
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"> As part of registering a resource provider type, CloudFormation must
4672
- # be able to access the S3 bucket which contains the schema handler
4673
- # package for that resource provider. For more information, see [IAM
4674
- # Permissions for Registering a Resource Provider][2] in the *AWS
4675
- # CloudFormation User Guide*.
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/AWSCloudFormation/latest/UserGuide/registry.html#registry-register-permissions
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), or
4747
- # `Remove` (deletes a resource).
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
- # Change sets do not currently support nested stacks. If you want to
7519
- # update a stack from a stack template that contains macros *and*
7520
- # nested stacks, you must update the stack directly from the
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.44.0
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-09-30 00:00:00.000000000 Z
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