aws-sdk-cloudformation 1.143.0 → 1.144.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8347e2f02cf9b4826b50450e0dca8dbbf08370ee87b722b400b33223ebb3ec9d
4
- data.tar.gz: 69a9dc61f912d048a77c5c474bb4e313475d5e7db5ad4d9e2b087f6845d6661e
3
+ metadata.gz: 588e5ccd9f89a406accee4a481c4d508d3e125947ed1124a0ef5dfb608bb776d
4
+ data.tar.gz: 94eba2018a47ff47cf52cf0e43d38f279b91acc7d0a8ee512c75bc2be35e93cd
5
5
  SHA512:
6
- metadata.gz: 975d600630dd1309017f1d5887bf7092a3e437a52de35b083b3831133b4967dcefce64c900be3d128e3e1c723256c8b7f7edf893f8dc8f6c19d508db45713514
7
- data.tar.gz: 9f16eacf8de9ed5637830ef684e9058d69f5f5046466612bd8d8df673d42b522b6549682dfb9765f82042741d728c36931f5e5f66e86488235f01370851b2615
6
+ metadata.gz: 9fb0a85aa6910d072024b8bdfc8ddf2aa5840bbe7fe5ac668c219f6e23bdc28937dc814e3e1b4d7a3080dce34f17157deb1a0393d32b332426778747760fb7a1
7
+ data.tar.gz: ad3f2795a007600e5aa30f6e99374ad78ca46b066ef8e21ec586f07b3ab296a6874547dc13166f1f905a935a17b3eccc76a0a11015ef33d7b1bf5bcd43da9ba8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.144.0 (2025-11-13)
5
+ ------------------
6
+
7
+ * Feature - CloudFormation now supports GetHookResult API with annotations to retrieve structured compliance check results and remediation guidance for each evaluated resource, replacing the previous single-message limitation with detailed validation outcomes.
8
+
4
9
  1.143.0 (2025-10-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.143.0
1
+ 1.144.0
@@ -896,7 +896,9 @@ module Aws::CloudFormation
896
896
  # CloudFormation generates the change set by comparing this template
897
897
  # with the template of the stack that you specified.
898
898
  #
899
- # Conditional: You must specify only `TemplateBody` or `TemplateURL`.
899
+ # Conditional: You must specify only one of the following parameters:
900
+ # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
901
+ # `true`.
900
902
  #
901
903
  # @option params [String] :template_url
902
904
  # The URL of the file that contains the revised template. The URL must
@@ -906,12 +908,28 @@ module Aws::CloudFormation
906
908
  # specified. The location for an Amazon S3 bucket must start with
907
909
  # `https://`. URLs from S3 static websites are not supported.
908
910
  #
909
- # Conditional: You must specify only `TemplateBody` or `TemplateURL`.
911
+ # Conditional: You must specify only one of the following parameters:
912
+ # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
913
+ # `true`.
910
914
  #
911
915
  # @option params [Boolean] :use_previous_template
912
916
  # Whether to reuse the template that's associated with the stack to
913
917
  # create the change set.
914
918
  #
919
+ # When using templates with the `AWS::LanguageExtensions` transform,
920
+ # provide the template instead of using `UsePreviousTemplate` to ensure
921
+ # new parameter values and Systems Manager parameter updates are applied
922
+ # correctly. For more information, see [AWS::LanguageExtensions
923
+ # transform][1].
924
+ #
925
+ # Conditional: You must specify only one of the following parameters:
926
+ # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
927
+ # `true`.
928
+ #
929
+ #
930
+ #
931
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/transform-aws-languageextensions.html
932
+ #
915
933
  # @option params [Array<Types::Parameter>] :parameters
916
934
  # A list of `Parameter` structures that specify input parameters for the
917
935
  # change set. For more information, see the Parameter data type.
@@ -924,7 +942,7 @@ module Aws::CloudFormation
924
942
  # * `CAPABILITY_IAM` and `CAPABILITY_NAMED_IAM`
925
943
  #
926
944
  # Some stack templates might include resources that can affect
927
- # permissions in your Amazon Web Services account; for example, by
945
+ # permissions in your Amazon Web Services account, for example, by
928
946
  # creating new IAM users. For those stacks, you must explicitly
929
947
  # acknowledge this by specifying one of these capabilities.
930
948
  #
@@ -1009,16 +1027,15 @@ module Aws::CloudFormation
1009
1027
  # [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
1010
1028
  #
1011
1029
  # @option params [Array<String>] :resource_types
1012
- # The template resource types that you have permissions to work with if
1013
- # you execute this change set, such as `AWS::EC2::Instance`,
1014
- # `AWS::EC2::*`, or `Custom::MyCustomInstance`.
1030
+ # Specifies which resource types you can work with, such as
1031
+ # `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
1015
1032
  #
1016
1033
  # If the list of resource types doesn't include a resource type that
1017
1034
  # you're updating, the stack update fails. By default, CloudFormation
1018
1035
  # grants permissions to all resource types. IAM uses this parameter for
1019
1036
  # condition keys in IAM policies for CloudFormation. For more
1020
- # information, see [Control access with Identity and Access
1021
- # Management][1] in the *CloudFormation User Guide*.
1037
+ # information, see [Control CloudFormation access with Identity and
1038
+ # Access Management][1] in the *CloudFormation User Guide*.
1022
1039
  #
1023
1040
  # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
1024
1041
  # specified.
@@ -1469,22 +1486,15 @@ module Aws::CloudFormation
1469
1486
  # [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
1470
1487
  #
1471
1488
  # @option params [Array<String>] :resource_types
1472
- # The template resource types that you have permissions to work with for
1473
- # this create stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
1474
- # or `Custom::MyCustomInstance`. Use the following syntax to describe
1475
- # template resource types: `AWS::*` (for all Amazon Web Services
1476
- # resources), `Custom::*` (for all custom resources),
1477
- # `Custom::logical_ID ` (for a specific custom resource),
1478
- # `AWS::service_name::*` (for all resources of a particular Amazon Web
1479
- # Services service), and `AWS::service_name::resource_logical_ID ` (for
1480
- # a specific Amazon Web Services resource).
1489
+ # Specifies which resource types you can work with, such as
1490
+ # `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
1481
1491
  #
1482
1492
  # If the list of resource types doesn't include a resource that you're
1483
1493
  # creating, the stack creation fails. By default, CloudFormation grants
1484
1494
  # permissions to all resource types. IAM uses this parameter for
1485
1495
  # CloudFormation-specific condition keys in IAM policies. For more
1486
- # information, see [Control access with Identity and Access
1487
- # Management][1].
1496
+ # information, see [Control CloudFormation access with Identity and
1497
+ # Access Management][1].
1488
1498
  #
1489
1499
  # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
1490
1500
  # specified.
@@ -2645,8 +2655,8 @@ module Aws::CloudFormation
2645
2655
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html
2646
2656
  #
2647
2657
  # @option params [String] :next_token
2648
- # A string that identifies the next page of limits that you want to
2649
- # retrieve.
2658
+ # The token for the next set of items to return. (You received this
2659
+ # token from a previous call.)
2650
2660
  #
2651
2661
  # @return [Types::DescribeAccountLimitsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2652
2662
  #
@@ -2695,8 +2705,8 @@ module Aws::CloudFormation
2695
2705
  # ID (ARN) of the change set you want to describe.
2696
2706
  #
2697
2707
  # @option params [String] :next_token
2698
- # A string (provided by the DescribeChangeSet response output) that
2699
- # identifies the next page of information that you want to retrieve.
2708
+ # The token for the next set of items to return. (You received this
2709
+ # token from a previous call.)
2700
2710
  #
2701
2711
  # @option params [Boolean] :include_property_values
2702
2712
  # If `true`, the returned changes include detailed changes in the
@@ -2810,7 +2820,7 @@ module Aws::CloudFormation
2810
2820
  req.send_request(options)
2811
2821
  end
2812
2822
 
2813
- # Returns hook-related information for the change set and a list of
2823
+ # Returns Hook-related information for the change set and a list of
2814
2824
  # changes that CloudFormation makes when you run the change set.
2815
2825
  #
2816
2826
  # @option params [required, String] :change_set_name
@@ -2822,9 +2832,8 @@ module Aws::CloudFormation
2822
2832
  # stack ID (ARN) of the change set you want to describe.
2823
2833
  #
2824
2834
  # @option params [String] :next_token
2825
- # A string, provided by the `DescribeChangeSetHooks` response output,
2826
- # that identifies the next page of information that you want to
2827
- # retrieve.
2835
+ # The token for the next set of items to return. (You received this
2836
+ # token from a previous call.)
2828
2837
  #
2829
2838
  # @option params [String] :logical_resource_id
2830
2839
  # If specified, lists only the Hooks related to the specified
@@ -3300,7 +3309,7 @@ module Aws::CloudFormation
3300
3309
  #
3301
3310
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-resource-configuration-complete.html
3302
3311
  #
3303
- # @option params [String] :stack_name
3312
+ # @option params [required, String] :stack_name
3304
3313
  # The name or the unique stack ID that's associated with the stack,
3305
3314
  # which aren't always interchangeable:
3306
3315
  #
@@ -3310,8 +3319,8 @@ module Aws::CloudFormation
3310
3319
  # * Deleted stacks: You must specify the unique stack ID.
3311
3320
  #
3312
3321
  # @option params [String] :next_token
3313
- # A string that identifies the next page of events that you want to
3314
- # retrieve.
3322
+ # The token for the next set of items to return. (You received this
3323
+ # token from a previous call.)
3315
3324
  #
3316
3325
  # @return [Types::DescribeStackEventsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3317
3326
  #
@@ -3323,7 +3332,7 @@ module Aws::CloudFormation
3323
3332
  # @example Request syntax with placeholder values
3324
3333
  #
3325
3334
  # resp = client.describe_stack_events({
3326
- # stack_name: "StackName",
3335
+ # stack_name: "StackName", # required
3327
3336
  # next_token: "NextToken",
3328
3337
  # })
3329
3338
  #
@@ -3584,8 +3593,8 @@ module Aws::CloudFormation
3584
3593
  # resource.
3585
3594
  #
3586
3595
  # @option params [String] :next_token
3587
- # A string that identifies the next page of stack resource drift
3588
- # results.
3596
+ # The token for the next set of items to return. (You received this
3597
+ # token from a previous call.)
3589
3598
  #
3590
3599
  # @option params [Integer] :max_results
3591
3600
  # The maximum number of results to be returned with a single call. If
@@ -3960,8 +3969,8 @@ module Aws::CloudFormation
3960
3969
  # * Deleted stacks: You must specify the unique stack ID.
3961
3970
  #
3962
3971
  # @option params [String] :next_token
3963
- # A string that identifies the next page of stacks that you want to
3964
- # retrieve.
3972
+ # The token for the next set of items to return. (You received this
3973
+ # token from a previous call.)
3965
3974
  #
3966
3975
  # @return [Types::DescribeStacksOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3967
3976
  #
@@ -4714,6 +4723,74 @@ module Aws::CloudFormation
4714
4723
  req.send_request(options)
4715
4724
  end
4716
4725
 
4726
+ # Retrieves detailed information and remediation guidance for a Hook
4727
+ # invocation result.
4728
+ #
4729
+ # @option params [String] :hook_result_id
4730
+ # The unique identifier (ID) of the Hook invocation result that you want
4731
+ # details about. You can get the ID from the [ListHookResults][1]
4732
+ # operation.
4733
+ #
4734
+ #
4735
+ #
4736
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListHookResults.html
4737
+ #
4738
+ # @return [Types::GetHookResultOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4739
+ #
4740
+ # * {Types::GetHookResultOutput#hook_result_id #hook_result_id} => String
4741
+ # * {Types::GetHookResultOutput#invocation_point #invocation_point} => String
4742
+ # * {Types::GetHookResultOutput#failure_mode #failure_mode} => String
4743
+ # * {Types::GetHookResultOutput#type_name #type_name} => String
4744
+ # * {Types::GetHookResultOutput#original_type_name #original_type_name} => String
4745
+ # * {Types::GetHookResultOutput#type_version_id #type_version_id} => String
4746
+ # * {Types::GetHookResultOutput#type_configuration_version_id #type_configuration_version_id} => String
4747
+ # * {Types::GetHookResultOutput#type_arn #type_arn} => String
4748
+ # * {Types::GetHookResultOutput#status #status} => String
4749
+ # * {Types::GetHookResultOutput#hook_status_reason #hook_status_reason} => String
4750
+ # * {Types::GetHookResultOutput#invoked_at #invoked_at} => Time
4751
+ # * {Types::GetHookResultOutput#target #target} => Types::HookTarget
4752
+ # * {Types::GetHookResultOutput#annotations #annotations} => Array&lt;Types::Annotation&gt;
4753
+ #
4754
+ # @example Request syntax with placeholder values
4755
+ #
4756
+ # resp = client.get_hook_result({
4757
+ # hook_result_id: "HookInvocationId",
4758
+ # })
4759
+ #
4760
+ # @example Response structure
4761
+ #
4762
+ # resp.hook_result_id #=> String
4763
+ # resp.invocation_point #=> String, one of "PRE_PROVISION"
4764
+ # resp.failure_mode #=> String, one of "FAIL", "WARN"
4765
+ # resp.type_name #=> String
4766
+ # resp.original_type_name #=> String
4767
+ # resp.type_version_id #=> String
4768
+ # resp.type_configuration_version_id #=> String
4769
+ # resp.type_arn #=> String
4770
+ # resp.status #=> String, one of "HOOK_IN_PROGRESS", "HOOK_COMPLETE_SUCCEEDED", "HOOK_COMPLETE_FAILED", "HOOK_FAILED"
4771
+ # resp.hook_status_reason #=> String
4772
+ # resp.invoked_at #=> Time
4773
+ # resp.target.target_type #=> String, one of "RESOURCE"
4774
+ # resp.target.target_type_name #=> String
4775
+ # resp.target.target_id #=> String
4776
+ # resp.target.action #=> String, one of "CREATE", "UPDATE", "DELETE", "IMPORT"
4777
+ # resp.annotations #=> Array
4778
+ # resp.annotations[0].annotation_name #=> String
4779
+ # resp.annotations[0].status #=> String, one of "PASSED", "FAILED", "SKIPPED"
4780
+ # resp.annotations[0].status_message #=> String
4781
+ # resp.annotations[0].remediation_message #=> String
4782
+ # resp.annotations[0].remediation_link #=> String
4783
+ # resp.annotations[0].severity_level #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL"
4784
+ #
4785
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetHookResult AWS API Documentation
4786
+ #
4787
+ # @overload get_hook_result(params = {})
4788
+ # @param [Hash] params ({})
4789
+ def get_hook_result(params = {}, options = {})
4790
+ req = build_request(:get_hook_result, params)
4791
+ req.send_request(options)
4792
+ end
4793
+
4717
4794
  # Returns the stack policy for a specified stack. If a stack doesn't
4718
4795
  # have a policy, a null value is returned.
4719
4796
  #
@@ -5036,8 +5113,8 @@ module Aws::CloudFormation
5036
5113
  # want to list change sets.
5037
5114
  #
5038
5115
  # @option params [String] :next_token
5039
- # A string (provided by the ListChangeSets response output) that
5040
- # identifies the next page of change sets that you want to retrieve.
5116
+ # The token for the next set of items to return. (You received this
5117
+ # token from a previous call.)
5041
5118
  #
5042
5119
  # @return [Types::ListChangeSetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5043
5120
  #
@@ -5094,8 +5171,8 @@ module Aws::CloudFormation
5094
5171
  # [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html
5095
5172
  #
5096
5173
  # @option params [String] :next_token
5097
- # A string (provided by the ListExports response output) that identifies
5098
- # the next page of exported output values that you asked to retrieve.
5174
+ # The token for the next set of items to return. (You received this
5175
+ # token from a previous call.)
5099
5176
  #
5100
5177
  # @return [Types::ListExportsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5101
5178
  #
@@ -5130,7 +5207,8 @@ module Aws::CloudFormation
5130
5207
  # Lists your generated templates in this Region.
5131
5208
  #
5132
5209
  # @option params [String] :next_token
5133
- # A string that identifies the next page of resource scan results.
5210
+ # The token for the next set of items to return. (You received this
5211
+ # token from a previous call.)
5134
5212
  #
5135
5213
  # @option params [Integer] :max_results
5136
5214
  # If the number of available results exceeds this maximum, the response
@@ -5273,8 +5351,8 @@ module Aws::CloudFormation
5273
5351
  # * `HOOK_FAILED`: The Hook encountered an error during execution.
5274
5352
  #
5275
5353
  # @option params [String] :next_token
5276
- # A string that identifies the next page of events that you want to
5277
- # retrieve.
5354
+ # The token for the next set of items to return. (You received this
5355
+ # token from a previous call.)
5278
5356
  #
5279
5357
  # @return [Types::ListHookResultsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5280
5358
  #
@@ -5339,9 +5417,8 @@ module Aws::CloudFormation
5339
5417
  # stack names that are importing this value.
5340
5418
  #
5341
5419
  # @option params [String] :next_token
5342
- # A string (provided by the ListImports response output) that identifies
5343
- # the next page of stacks that are importing the specified exported
5344
- # output value.
5420
+ # The token for the next set of items to return. (You received this
5421
+ # token from a previous call.)
5345
5422
  #
5346
5423
  # @return [Types::ListImportsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5347
5424
  #
@@ -5384,7 +5461,8 @@ module Aws::CloudFormation
5384
5461
  # Up to 100 resources can be provided.
5385
5462
  #
5386
5463
  # @option params [String] :next_token
5387
- # A string that identifies the next page of resource scan results.
5464
+ # The token for the next set of items to return. (You received this
5465
+ # token from a previous call.)
5388
5466
  #
5389
5467
  # @option params [Integer] :max_results
5390
5468
  # If the number of available results exceeds this maximum, the response
@@ -5518,7 +5596,8 @@ module Aws::CloudFormation
5518
5596
  # If specified, the returned resources will have a matching tag value.
5519
5597
  #
5520
5598
  # @option params [String] :next_token
5521
- # A string that identifies the next page of resource scan results.
5599
+ # The token for the next set of items to return. (You received this
5600
+ # token from a previous call.)
5522
5601
  #
5523
5602
  # @option params [Integer] :max_results
5524
5603
  # If the number of available results exceeds this maximum, the response
@@ -5629,7 +5708,8 @@ module Aws::CloudFormation
5629
5708
  # return up to 10 resource scans.
5630
5709
  #
5631
5710
  # @option params [String] :next_token
5632
- # A string that identifies the next page of resource scan results.
5711
+ # The token for the next set of items to return. (You received this
5712
+ # token from a previous call.)
5633
5713
  #
5634
5714
  # @option params [Integer] :max_results
5635
5715
  # If the number of available results exceeds this maximum, the response
@@ -5717,12 +5797,8 @@ module Aws::CloudFormation
5717
5797
  # resources for.
5718
5798
  #
5719
5799
  # @option params [String] :next_token
5720
- # If the previous paginated request didn't return all of the remaining
5721
- # results, the response object's `NextToken` parameter value is set to
5722
- # a token. To retrieve the next set of results, call this action again
5723
- # and assign that token to the request object's `NextToken` parameter.
5724
- # If there are no remaining results, the previous response object's
5725
- # `NextToken` parameter is set to `null`.
5800
+ # The token for the next set of items to return. (You received this
5801
+ # token from a previous call.)
5726
5802
  #
5727
5803
  # @option params [Integer] :max_results
5728
5804
  # The maximum number of results to be returned with a single call. If
@@ -5832,12 +5908,8 @@ module Aws::CloudFormation
5832
5908
  # instances for.
5833
5909
  #
5834
5910
  # @option params [String] :next_token
5835
- # If the previous request didn't return all the remaining results, the
5836
- # response's `NextToken` parameter value is set to a token. To retrieve
5837
- # the next set of results, call `ListStackInstances` again and assign
5838
- # that token to the request object's `NextToken` parameter. If there
5839
- # are no remaining results, the previous response object's `NextToken`
5840
- # parameter is set to `null`.
5911
+ # The token for the next set of items to return. (You received this
5912
+ # token from a previous call.)
5841
5913
  #
5842
5914
  # @option params [Integer] :max_results
5843
5915
  # The maximum number of results to be returned with a single call. If
@@ -5934,11 +6006,8 @@ module Aws::CloudFormation
5934
6006
  # CreateStackRefactor action.
5935
6007
  #
5936
6008
  # @option params [String] :next_token
5937
- # If the request doesn't return all the remaining results, `NextToken`
5938
- # is set to a token. To retrieve the next set of results, call this
5939
- # action again and assign that token to the request object's
5940
- # `NextToken` parameter. If the request returns all results, `NextToken`
5941
- # is set to `null`.
6009
+ # The token for the next set of items to return. (You received this
6010
+ # token from a previous call.)
5942
6011
  #
5943
6012
  # @option params [Integer] :max_results
5944
6013
  # The maximum number of results to be returned with a single call. If
@@ -5999,11 +6068,8 @@ module Aws::CloudFormation
5999
6068
  # status codes.
6000
6069
  #
6001
6070
  # @option params [String] :next_token
6002
- # If the request doesn't return all the remaining results, `NextToken`
6003
- # is set to a token. To retrieve the next set of results, call this
6004
- # action again and assign that token to the request object's
6005
- # `NextToken` parameter. If the request returns all results, `NextToken`
6006
- # is set to `null`.
6071
+ # The token for the next set of items to return. (You received this
6072
+ # token from a previous call.)
6007
6073
  #
6008
6074
  # @option params [Integer] :max_results
6009
6075
  # The maximum number of results to be returned with a single call. If
@@ -6061,8 +6127,8 @@ module Aws::CloudFormation
6061
6127
  # * Deleted stacks: You must specify the unique stack ID.
6062
6128
  #
6063
6129
  # @option params [String] :next_token
6064
- # A string that identifies the next page of stack resources that you
6065
- # want to retrieve.
6130
+ # The token for the next set of items to return. (You received this
6131
+ # token from a previous call.)
6066
6132
  #
6067
6133
  # @return [Types::ListStackResourcesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6068
6134
  #
@@ -6109,8 +6175,8 @@ module Aws::CloudFormation
6109
6175
  # deployment targets for.
6110
6176
  #
6111
6177
  # @option params [String] :next_token
6112
- # A string that identifies the next page of deployment targets that you
6113
- # want to retrieve.
6178
+ # The token for the next set of items to return. (You received this
6179
+ # token from a previous call.)
6114
6180
  #
6115
6181
  # @option params [Integer] :max_results
6116
6182
  # The maximum number of results to be returned with a single call. If
@@ -6186,12 +6252,8 @@ module Aws::CloudFormation
6186
6252
  # The ID of the StackSet operation.
6187
6253
  #
6188
6254
  # @option params [String] :next_token
6189
- # If the previous request didn't return all the remaining results, the
6190
- # response object's `NextToken` parameter value is set to a token. To
6191
- # retrieve the next set of results, call `ListStackSetOperationResults`
6192
- # again and assign that token to the request object's `NextToken`
6193
- # parameter. If there are no remaining results, the previous response
6194
- # object's `NextToken` parameter is set to `null`.
6255
+ # The token for the next set of items to return. (You received this
6256
+ # token from a previous call.)
6195
6257
  #
6196
6258
  # @option params [Integer] :max_results
6197
6259
  # The maximum number of results to be returned with a single call. If
@@ -6280,13 +6342,8 @@ module Aws::CloudFormation
6280
6342
  # summaries for.
6281
6343
  #
6282
6344
  # @option params [String] :next_token
6283
- # If the previous paginated request didn't return all of the remaining
6284
- # results, the response object's `NextToken` parameter value is set to
6285
- # a token. To retrieve the next set of results, call
6286
- # `ListStackSetOperations` again and assign that token to the request
6287
- # object's `NextToken` parameter. If there are no remaining results,
6288
- # the previous response object's `NextToken` parameter is set to
6289
- # `null`.
6345
+ # The token for the next set of items to return. (You received this
6346
+ # token from a previous call.)
6290
6347
  #
6291
6348
  # @option params [Integer] :max_results
6292
6349
  # The maximum number of results to be returned with a single call. If
@@ -6384,12 +6441,8 @@ module Aws::CloudFormation
6384
6441
  # permissions in the management account.
6385
6442
  #
6386
6443
  # @option params [String] :next_token
6387
- # If the previous paginated request didn't return all the remaining
6388
- # results, the response object's `NextToken` parameter value is set to
6389
- # a token. To retrieve the next set of results, call `ListStackSets`
6390
- # again and assign that token to the request object's `NextToken`
6391
- # parameter. If there are no remaining results, the previous response
6392
- # object's `NextToken` parameter is set to `null`.
6444
+ # The token for the next set of items to return. (You received this
6445
+ # token from a previous call.)
6393
6446
  #
6394
6447
  # @option params [Integer] :max_results
6395
6448
  # The maximum number of results to be returned with a single call. If
@@ -6471,8 +6524,8 @@ module Aws::CloudFormation
6471
6524
  # been deleted).
6472
6525
  #
6473
6526
  # @option params [String] :next_token
6474
- # A string that identifies the next page of stacks that you want to
6475
- # retrieve.
6527
+ # The token for the next set of items to return. (You received this
6528
+ # token from a previous call.)
6476
6529
  #
6477
6530
  # @option params [Array<String>] :stack_status_filter
6478
6531
  # Stack status to use as a filter. Specify one or more stack status
@@ -6549,12 +6602,8 @@ module Aws::CloudFormation
6549
6602
  # request parameter to get the next set of results.
6550
6603
  #
6551
6604
  # @option params [String] :next_token
6552
- # If the previous paginated request didn't return all the remaining
6553
- # results, the response object's `NextToken` parameter value is set to
6554
- # a token. To retrieve the next set of results, call this action again
6555
- # and assign that token to the request object's `NextToken` parameter.
6556
- # If there are no remaining results, the previous response object's
6557
- # `NextToken` parameter is set to `null`.
6605
+ # The token for the next set of items to return. (You received this
6606
+ # token from a previous call.)
6558
6607
  #
6559
6608
  # @return [Types::ListTypeRegistrationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6560
6609
  #
@@ -6615,12 +6664,8 @@ module Aws::CloudFormation
6615
6664
  # request parameter to get the next set of results.
6616
6665
  #
6617
6666
  # @option params [String] :next_token
6618
- # If the previous paginated request didn't return all of the remaining
6619
- # results, the response object's `NextToken` parameter value is set to
6620
- # a token. To retrieve the next set of results, call this action again
6621
- # and assign that token to the request object's `NextToken` parameter.
6622
- # If there are no remaining results, the previous response object's
6623
- # `NextToken` parameter is set to `null`.
6667
+ # The token for the next set of items to return. (You received this
6668
+ # token from a previous call.)
6624
6669
  #
6625
6670
  # @option params [String] :deprecated_status
6626
6671
  # The deprecation status of the extension versions that you want to get
@@ -6757,12 +6802,8 @@ module Aws::CloudFormation
6757
6802
  # request parameter to get the next set of results.
6758
6803
  #
6759
6804
  # @option params [String] :next_token
6760
- # If the previous paginated request didn't return all the remaining
6761
- # results, the response object's `NextToken` parameter value is set to
6762
- # a token. To retrieve the next set of results, call this action again
6763
- # and assign that token to the request object's `NextToken` parameter.
6764
- # If there are no remaining results, the previous response object's
6765
- # `NextToken` parameter is set to `null`.
6805
+ # The token for the next set of items to return. (You received this
6806
+ # token from a previous call.)
6766
6807
  #
6767
6808
  # @return [Types::ListTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6768
6809
  #
@@ -7882,10 +7923,20 @@ module Aws::CloudFormation
7882
7923
  # Reuse the existing template that is associated with the stack that you
7883
7924
  # are updating.
7884
7925
  #
7926
+ # When using templates with the `AWS::LanguageExtensions` transform,
7927
+ # provide the template instead of using `UsePreviousTemplate` to ensure
7928
+ # new parameter values and Systems Manager parameter updates are applied
7929
+ # correctly. For more information, see [AWS::LanguageExtensions
7930
+ # transform][1].
7931
+ #
7885
7932
  # Conditional: You must specify only one of the following parameters:
7886
7933
  # `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
7887
7934
  # `true`.
7888
7935
  #
7936
+ #
7937
+ #
7938
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/transform-aws-languageextensions.html
7939
+ #
7889
7940
  # @option params [String] :stack_policy_during_update_body
7890
7941
  # Structure that contains the temporary overriding stack policy body.
7891
7942
  # You can specify either the `StackPolicyDuringUpdateBody` or the
@@ -8014,16 +8065,15 @@ module Aws::CloudFormation
8014
8065
  # [12]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
8015
8066
  #
8016
8067
  # @option params [Array<String>] :resource_types
8017
- # The template resource types that you have permissions to work with for
8018
- # this update stack action, such as `AWS::EC2::Instance`, `AWS::EC2::*`,
8019
- # or `Custom::MyCustomInstance`.
8068
+ # Specifies which resource types you can work with, such as
8069
+ # `AWS::EC2::Instance` or `Custom::MyCustomInstance`.
8020
8070
  #
8021
8071
  # If the list of resource types doesn't include a resource that you're
8022
8072
  # updating, the stack update fails. By default, CloudFormation grants
8023
8073
  # permissions to all resource types. IAM uses this parameter for
8024
8074
  # CloudFormation-specific condition keys in IAM policies. For more
8025
- # information, see [Control access with Identity and Access
8026
- # Management][1].
8075
+ # information, see [Control CloudFormation access with Identity and
8076
+ # Access Management][1].
8027
8077
  #
8028
8078
  # <note markdown="1"> Only one of the `Capabilities` and `ResourceType` parameters can be
8029
8079
  # specified.
@@ -8905,7 +8955,7 @@ module Aws::CloudFormation
8905
8955
  tracer: tracer
8906
8956
  )
8907
8957
  context[:gem_name] = 'aws-sdk-cloudformation'
8908
- context[:gem_version] = '1.143.0'
8958
+ context[:gem_version] = '1.144.0'
8909
8959
  Seahorse::Client::Request.new(handlers, context)
8910
8960
  end
8911
8961