aws-sdk-cloudformation 1.72.0 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +2 -2
- data/lib/aws-sdk-cloudformation/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-cloudformation/types.rb +0 -1051
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +2 -2
@@ -113,25 +113,6 @@ module Aws::CloudFormation
|
|
113
113
|
include Aws::Structure
|
114
114
|
end
|
115
115
|
|
116
|
-
# @note When making an API call, you may pass ActivateTypeInput
|
117
|
-
# data as a hash:
|
118
|
-
#
|
119
|
-
# {
|
120
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
121
|
-
# public_type_arn: "ThirdPartyTypeArn",
|
122
|
-
# publisher_id: "PublisherId",
|
123
|
-
# type_name: "TypeName",
|
124
|
-
# type_name_alias: "TypeName",
|
125
|
-
# auto_update: false,
|
126
|
-
# logging_config: {
|
127
|
-
# log_role_arn: "RoleArn", # required
|
128
|
-
# log_group_name: "LogGroupName", # required
|
129
|
-
# },
|
130
|
-
# execution_role_arn: "RoleArn",
|
131
|
-
# version_bump: "MAJOR", # accepts MAJOR, MINOR
|
132
|
-
# major_version: 1,
|
133
|
-
# }
|
134
|
-
#
|
135
116
|
# @!attribute [rw] type
|
136
117
|
# The extension type.
|
137
118
|
#
|
@@ -250,14 +231,6 @@ module Aws::CloudFormation
|
|
250
231
|
# automatically deploys to Organizations accounts that are added to a
|
251
232
|
# target organization or organizational unit (OU).
|
252
233
|
#
|
253
|
-
# @note When making an API call, you may pass AutoDeployment
|
254
|
-
# data as a hash:
|
255
|
-
#
|
256
|
-
# {
|
257
|
-
# enabled: false,
|
258
|
-
# retain_stacks_on_account_removal: false,
|
259
|
-
# }
|
260
|
-
#
|
261
234
|
# @!attribute [rw] enabled
|
262
235
|
# If set to `true`, StackSets automatically deploys additional stack
|
263
236
|
# instances to Organizations accounts that are added to a target
|
@@ -307,21 +280,6 @@ module Aws::CloudFormation
|
|
307
280
|
include Aws::Structure
|
308
281
|
end
|
309
282
|
|
310
|
-
# @note When making an API call, you may pass BatchDescribeTypeConfigurationsInput
|
311
|
-
# data as a hash:
|
312
|
-
#
|
313
|
-
# {
|
314
|
-
# type_configuration_identifiers: [ # required
|
315
|
-
# {
|
316
|
-
# type_arn: "TypeArn",
|
317
|
-
# type_configuration_alias: "TypeConfigurationAlias",
|
318
|
-
# type_configuration_arn: "TypeConfigurationArn",
|
319
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
320
|
-
# type_name: "TypeName",
|
321
|
-
# },
|
322
|
-
# ],
|
323
|
-
# }
|
324
|
-
#
|
325
283
|
# @!attribute [rw] type_configuration_identifiers
|
326
284
|
# The list of identifiers for the desired extension configurations.
|
327
285
|
# @return [Array<Types::TypeConfigurationIdentifier>]
|
@@ -374,14 +332,6 @@ module Aws::CloudFormation
|
|
374
332
|
|
375
333
|
# The input for the CancelUpdateStack action.
|
376
334
|
#
|
377
|
-
# @note When making an API call, you may pass CancelUpdateStackInput
|
378
|
-
# data as a hash:
|
379
|
-
#
|
380
|
-
# {
|
381
|
-
# stack_name: "StackName", # required
|
382
|
-
# client_request_token: "ClientRequestToken",
|
383
|
-
# }
|
384
|
-
#
|
385
335
|
# @!attribute [rw] stack_name
|
386
336
|
# The name or the unique stack ID that's associated with the stack.
|
387
337
|
# @return [String]
|
@@ -627,16 +577,6 @@ module Aws::CloudFormation
|
|
627
577
|
|
628
578
|
# The input for the ContinueUpdateRollback action.
|
629
579
|
#
|
630
|
-
# @note When making an API call, you may pass ContinueUpdateRollbackInput
|
631
|
-
# data as a hash:
|
632
|
-
#
|
633
|
-
# {
|
634
|
-
# stack_name: "StackNameOrId", # required
|
635
|
-
# role_arn: "RoleARN",
|
636
|
-
# resources_to_skip: ["ResourceToSkip"],
|
637
|
-
# client_request_token: "ClientRequestToken",
|
638
|
-
# }
|
639
|
-
#
|
640
580
|
# @!attribute [rw] stack_name
|
641
581
|
# The name or the unique ID of the stack that you want to continue
|
642
582
|
# rolling back.
|
@@ -738,57 +678,6 @@ module Aws::CloudFormation
|
|
738
678
|
|
739
679
|
# The input for the CreateChangeSet action.
|
740
680
|
#
|
741
|
-
# @note When making an API call, you may pass CreateChangeSetInput
|
742
|
-
# data as a hash:
|
743
|
-
#
|
744
|
-
# {
|
745
|
-
# stack_name: "StackNameOrId", # required
|
746
|
-
# template_body: "TemplateBody",
|
747
|
-
# template_url: "TemplateURL",
|
748
|
-
# use_previous_template: false,
|
749
|
-
# parameters: [
|
750
|
-
# {
|
751
|
-
# parameter_key: "ParameterKey",
|
752
|
-
# parameter_value: "ParameterValue",
|
753
|
-
# use_previous_value: false,
|
754
|
-
# resolved_value: "ParameterValue",
|
755
|
-
# },
|
756
|
-
# ],
|
757
|
-
# capabilities: ["CAPABILITY_IAM"], # accepts CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
|
758
|
-
# resource_types: ["ResourceType"],
|
759
|
-
# role_arn: "RoleARN",
|
760
|
-
# rollback_configuration: {
|
761
|
-
# rollback_triggers: [
|
762
|
-
# {
|
763
|
-
# arn: "Arn", # required
|
764
|
-
# type: "Type", # required
|
765
|
-
# },
|
766
|
-
# ],
|
767
|
-
# monitoring_time_in_minutes: 1,
|
768
|
-
# },
|
769
|
-
# notification_arns: ["NotificationARN"],
|
770
|
-
# tags: [
|
771
|
-
# {
|
772
|
-
# key: "TagKey", # required
|
773
|
-
# value: "TagValue", # required
|
774
|
-
# },
|
775
|
-
# ],
|
776
|
-
# change_set_name: "ChangeSetName", # required
|
777
|
-
# client_token: "ClientToken",
|
778
|
-
# description: "Description",
|
779
|
-
# change_set_type: "CREATE", # accepts CREATE, UPDATE, IMPORT
|
780
|
-
# resources_to_import: [
|
781
|
-
# {
|
782
|
-
# resource_type: "ResourceType", # required
|
783
|
-
# logical_resource_id: "LogicalResourceId", # required
|
784
|
-
# resource_identifier: { # required
|
785
|
-
# "ResourceIdentifierPropertyKey" => "ResourceIdentifierPropertyValue",
|
786
|
-
# },
|
787
|
-
# },
|
788
|
-
# ],
|
789
|
-
# include_nested_stacks: false,
|
790
|
-
# }
|
791
|
-
#
|
792
681
|
# @!attribute [rw] stack_name
|
793
682
|
# The name or the unique ID of the stack for which you are creating a
|
794
683
|
# change set. CloudFormation generates the change set by comparing
|
@@ -1061,49 +950,6 @@ module Aws::CloudFormation
|
|
1061
950
|
|
1062
951
|
# The input for CreateStack action.
|
1063
952
|
#
|
1064
|
-
# @note When making an API call, you may pass CreateStackInput
|
1065
|
-
# data as a hash:
|
1066
|
-
#
|
1067
|
-
# {
|
1068
|
-
# stack_name: "StackName", # required
|
1069
|
-
# template_body: "TemplateBody",
|
1070
|
-
# template_url: "TemplateURL",
|
1071
|
-
# parameters: [
|
1072
|
-
# {
|
1073
|
-
# parameter_key: "ParameterKey",
|
1074
|
-
# parameter_value: "ParameterValue",
|
1075
|
-
# use_previous_value: false,
|
1076
|
-
# resolved_value: "ParameterValue",
|
1077
|
-
# },
|
1078
|
-
# ],
|
1079
|
-
# disable_rollback: false,
|
1080
|
-
# rollback_configuration: {
|
1081
|
-
# rollback_triggers: [
|
1082
|
-
# {
|
1083
|
-
# arn: "Arn", # required
|
1084
|
-
# type: "Type", # required
|
1085
|
-
# },
|
1086
|
-
# ],
|
1087
|
-
# monitoring_time_in_minutes: 1,
|
1088
|
-
# },
|
1089
|
-
# timeout_in_minutes: 1,
|
1090
|
-
# notification_arns: ["NotificationARN"],
|
1091
|
-
# capabilities: ["CAPABILITY_IAM"], # accepts CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
|
1092
|
-
# resource_types: ["ResourceType"],
|
1093
|
-
# role_arn: "RoleARN",
|
1094
|
-
# on_failure: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK, DELETE
|
1095
|
-
# stack_policy_body: "StackPolicyBody",
|
1096
|
-
# stack_policy_url: "StackPolicyURL",
|
1097
|
-
# tags: [
|
1098
|
-
# {
|
1099
|
-
# key: "TagKey", # required
|
1100
|
-
# value: "TagValue", # required
|
1101
|
-
# },
|
1102
|
-
# ],
|
1103
|
-
# client_request_token: "ClientRequestToken",
|
1104
|
-
# enable_termination_protection: false,
|
1105
|
-
# }
|
1106
|
-
#
|
1107
953
|
# @!attribute [rw] stack_name
|
1108
954
|
# The name that's associated with the stack. The name must be unique
|
1109
955
|
# in the Region in which you are creating the stack.
|
@@ -1403,39 +1249,6 @@ module Aws::CloudFormation
|
|
1403
1249
|
include Aws::Structure
|
1404
1250
|
end
|
1405
1251
|
|
1406
|
-
# @note When making an API call, you may pass CreateStackInstancesInput
|
1407
|
-
# data as a hash:
|
1408
|
-
#
|
1409
|
-
# {
|
1410
|
-
# stack_set_name: "StackSetName", # required
|
1411
|
-
# accounts: ["Account"],
|
1412
|
-
# deployment_targets: {
|
1413
|
-
# accounts: ["Account"],
|
1414
|
-
# accounts_url: "AccountsUrl",
|
1415
|
-
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1416
|
-
# account_filter_type: "NONE", # accepts NONE, INTERSECTION, DIFFERENCE, UNION
|
1417
|
-
# },
|
1418
|
-
# regions: ["Region"], # required
|
1419
|
-
# parameter_overrides: [
|
1420
|
-
# {
|
1421
|
-
# parameter_key: "ParameterKey",
|
1422
|
-
# parameter_value: "ParameterValue",
|
1423
|
-
# use_previous_value: false,
|
1424
|
-
# resolved_value: "ParameterValue",
|
1425
|
-
# },
|
1426
|
-
# ],
|
1427
|
-
# operation_preferences: {
|
1428
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1429
|
-
# region_order: ["Region"],
|
1430
|
-
# failure_tolerance_count: 1,
|
1431
|
-
# failure_tolerance_percentage: 1,
|
1432
|
-
# max_concurrent_count: 1,
|
1433
|
-
# max_concurrent_percentage: 1,
|
1434
|
-
# },
|
1435
|
-
# operation_id: "ClientRequestToken",
|
1436
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1437
|
-
# }
|
1438
|
-
#
|
1439
1252
|
# @!attribute [rw] stack_set_name
|
1440
1253
|
# The name or unique ID of the stack set that you want to create stack
|
1441
1254
|
# instances from.
|
@@ -1587,44 +1400,6 @@ module Aws::CloudFormation
|
|
1587
1400
|
include Aws::Structure
|
1588
1401
|
end
|
1589
1402
|
|
1590
|
-
# @note When making an API call, you may pass CreateStackSetInput
|
1591
|
-
# data as a hash:
|
1592
|
-
#
|
1593
|
-
# {
|
1594
|
-
# stack_set_name: "StackSetName", # required
|
1595
|
-
# description: "Description",
|
1596
|
-
# template_body: "TemplateBody",
|
1597
|
-
# template_url: "TemplateURL",
|
1598
|
-
# stack_id: "StackId",
|
1599
|
-
# parameters: [
|
1600
|
-
# {
|
1601
|
-
# parameter_key: "ParameterKey",
|
1602
|
-
# parameter_value: "ParameterValue",
|
1603
|
-
# use_previous_value: false,
|
1604
|
-
# resolved_value: "ParameterValue",
|
1605
|
-
# },
|
1606
|
-
# ],
|
1607
|
-
# capabilities: ["CAPABILITY_IAM"], # accepts CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
|
1608
|
-
# tags: [
|
1609
|
-
# {
|
1610
|
-
# key: "TagKey", # required
|
1611
|
-
# value: "TagValue", # required
|
1612
|
-
# },
|
1613
|
-
# ],
|
1614
|
-
# administration_role_arn: "RoleARN",
|
1615
|
-
# execution_role_name: "ExecutionRoleName",
|
1616
|
-
# permission_model: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, SELF_MANAGED
|
1617
|
-
# auto_deployment: {
|
1618
|
-
# enabled: false,
|
1619
|
-
# retain_stacks_on_account_removal: false,
|
1620
|
-
# },
|
1621
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1622
|
-
# client_request_token: "ClientRequestToken",
|
1623
|
-
# managed_execution: {
|
1624
|
-
# active: false,
|
1625
|
-
# },
|
1626
|
-
# }
|
1627
|
-
#
|
1628
1403
|
# @!attribute [rw] stack_set_name
|
1629
1404
|
# The name to associate with the stack set. The name must be unique in
|
1630
1405
|
# the Region where you create your stack set.
|
@@ -1910,15 +1685,6 @@ module Aws::CloudFormation
|
|
1910
1685
|
#
|
1911
1686
|
class CreatedButModifiedException < Aws::EmptyStructure; end
|
1912
1687
|
|
1913
|
-
# @note When making an API call, you may pass DeactivateTypeInput
|
1914
|
-
# data as a hash:
|
1915
|
-
#
|
1916
|
-
# {
|
1917
|
-
# type_name: "TypeName",
|
1918
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
1919
|
-
# arn: "PrivateTypeArn",
|
1920
|
-
# }
|
1921
|
-
#
|
1922
1688
|
# @!attribute [rw] type_name
|
1923
1689
|
# The type name of the extension, in this account and region. If you
|
1924
1690
|
# specified a type name alias when enabling the extension, use the
|
@@ -1959,14 +1725,6 @@ module Aws::CloudFormation
|
|
1959
1725
|
|
1960
1726
|
# The input for the DeleteChangeSet action.
|
1961
1727
|
#
|
1962
|
-
# @note When making an API call, you may pass DeleteChangeSetInput
|
1963
|
-
# data as a hash:
|
1964
|
-
#
|
1965
|
-
# {
|
1966
|
-
# change_set_name: "ChangeSetNameOrId", # required
|
1967
|
-
# stack_name: "StackNameOrId",
|
1968
|
-
# }
|
1969
|
-
#
|
1970
1728
|
# @!attribute [rw] change_set_name
|
1971
1729
|
# The name or Amazon Resource Name (ARN) of the change set that you
|
1972
1730
|
# want to delete.
|
@@ -1994,16 +1752,6 @@ module Aws::CloudFormation
|
|
1994
1752
|
|
1995
1753
|
# The input for DeleteStack action.
|
1996
1754
|
#
|
1997
|
-
# @note When making an API call, you may pass DeleteStackInput
|
1998
|
-
# data as a hash:
|
1999
|
-
#
|
2000
|
-
# {
|
2001
|
-
# stack_name: "StackName", # required
|
2002
|
-
# retain_resources: ["LogicalResourceId"],
|
2003
|
-
# role_arn: "RoleARN",
|
2004
|
-
# client_request_token: "ClientRequestToken",
|
2005
|
-
# }
|
2006
|
-
#
|
2007
1755
|
# @!attribute [rw] stack_name
|
2008
1756
|
# The name or the unique stack ID that's associated with the stack.
|
2009
1757
|
# @return [String]
|
@@ -2063,32 +1811,6 @@ module Aws::CloudFormation
|
|
2063
1811
|
include Aws::Structure
|
2064
1812
|
end
|
2065
1813
|
|
2066
|
-
# @note When making an API call, you may pass DeleteStackInstancesInput
|
2067
|
-
# data as a hash:
|
2068
|
-
#
|
2069
|
-
# {
|
2070
|
-
# stack_set_name: "StackSetName", # required
|
2071
|
-
# accounts: ["Account"],
|
2072
|
-
# deployment_targets: {
|
2073
|
-
# accounts: ["Account"],
|
2074
|
-
# accounts_url: "AccountsUrl",
|
2075
|
-
# organizational_unit_ids: ["OrganizationalUnitId"],
|
2076
|
-
# account_filter_type: "NONE", # accepts NONE, INTERSECTION, DIFFERENCE, UNION
|
2077
|
-
# },
|
2078
|
-
# regions: ["Region"], # required
|
2079
|
-
# operation_preferences: {
|
2080
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
2081
|
-
# region_order: ["Region"],
|
2082
|
-
# failure_tolerance_count: 1,
|
2083
|
-
# failure_tolerance_percentage: 1,
|
2084
|
-
# max_concurrent_count: 1,
|
2085
|
-
# max_concurrent_percentage: 1,
|
2086
|
-
# },
|
2087
|
-
# retain_stacks: false, # required
|
2088
|
-
# operation_id: "ClientRequestToken",
|
2089
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2090
|
-
# }
|
2091
|
-
#
|
2092
1814
|
# @!attribute [rw] stack_set_name
|
2093
1815
|
# The name or unique ID of the stack set that you want to delete stack
|
2094
1816
|
# instances for.
|
@@ -2199,14 +1921,6 @@ module Aws::CloudFormation
|
|
2199
1921
|
include Aws::Structure
|
2200
1922
|
end
|
2201
1923
|
|
2202
|
-
# @note When making an API call, you may pass DeleteStackSetInput
|
2203
|
-
# data as a hash:
|
2204
|
-
#
|
2205
|
-
# {
|
2206
|
-
# stack_set_name: "StackSetName", # required
|
2207
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2208
|
-
# }
|
2209
|
-
#
|
2210
1924
|
# @!attribute [rw] stack_set_name
|
2211
1925
|
# The name or unique ID of the stack set that you're deleting. You
|
2212
1926
|
# can obtain this value by running ListStackSets.
|
@@ -2257,16 +1971,6 @@ module Aws::CloudFormation
|
|
2257
1971
|
# `OrganizationalUnitIds`. For create and delete operations, specify
|
2258
1972
|
# `OrganizationalUnitIds`.
|
2259
1973
|
#
|
2260
|
-
# @note When making an API call, you may pass DeploymentTargets
|
2261
|
-
# data as a hash:
|
2262
|
-
#
|
2263
|
-
# {
|
2264
|
-
# accounts: ["Account"],
|
2265
|
-
# accounts_url: "AccountsUrl",
|
2266
|
-
# organizational_unit_ids: ["OrganizationalUnitId"],
|
2267
|
-
# account_filter_type: "NONE", # accepts NONE, INTERSECTION, DIFFERENCE, UNION
|
2268
|
-
# }
|
2269
|
-
#
|
2270
1974
|
# @!attribute [rw] accounts
|
2271
1975
|
# The names of one or more Amazon Web Services accounts for which you
|
2272
1976
|
# want to deploy stack set updates.
|
@@ -2318,16 +2022,6 @@ module Aws::CloudFormation
|
|
2318
2022
|
include Aws::Structure
|
2319
2023
|
end
|
2320
2024
|
|
2321
|
-
# @note When making an API call, you may pass DeregisterTypeInput
|
2322
|
-
# data as a hash:
|
2323
|
-
#
|
2324
|
-
# {
|
2325
|
-
# arn: "PrivateTypeArn",
|
2326
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
2327
|
-
# type_name: "TypeName",
|
2328
|
-
# version_id: "TypeVersionId",
|
2329
|
-
# }
|
2330
|
-
#
|
2331
2025
|
# @!attribute [rw] arn
|
2332
2026
|
# The Amazon Resource Name (ARN) of the extension.
|
2333
2027
|
#
|
@@ -2372,13 +2066,6 @@ module Aws::CloudFormation
|
|
2372
2066
|
|
2373
2067
|
# The input for the DescribeAccountLimits action.
|
2374
2068
|
#
|
2375
|
-
# @note When making an API call, you may pass DescribeAccountLimitsInput
|
2376
|
-
# data as a hash:
|
2377
|
-
#
|
2378
|
-
# {
|
2379
|
-
# next_token: "NextToken",
|
2380
|
-
# }
|
2381
|
-
#
|
2382
2069
|
# @!attribute [rw] next_token
|
2383
2070
|
# A string that identifies the next page of limits that you want to
|
2384
2071
|
# retrieve.
|
@@ -2414,16 +2101,6 @@ module Aws::CloudFormation
|
|
2414
2101
|
include Aws::Structure
|
2415
2102
|
end
|
2416
2103
|
|
2417
|
-
# @note When making an API call, you may pass DescribeChangeSetHooksInput
|
2418
|
-
# data as a hash:
|
2419
|
-
#
|
2420
|
-
# {
|
2421
|
-
# change_set_name: "ChangeSetNameOrId", # required
|
2422
|
-
# stack_name: "StackNameOrId",
|
2423
|
-
# next_token: "NextToken",
|
2424
|
-
# logical_resource_id: "LogicalResourceId",
|
2425
|
-
# }
|
2426
|
-
#
|
2427
2104
|
# @!attribute [rw] change_set_name
|
2428
2105
|
# The name or Amazon Resource Name (ARN) of the change set that you
|
2429
2106
|
# want to describe.
|
@@ -2500,15 +2177,6 @@ module Aws::CloudFormation
|
|
2500
2177
|
|
2501
2178
|
# The input for the DescribeChangeSet action.
|
2502
2179
|
#
|
2503
|
-
# @note When making an API call, you may pass DescribeChangeSetInput
|
2504
|
-
# data as a hash:
|
2505
|
-
#
|
2506
|
-
# {
|
2507
|
-
# change_set_name: "ChangeSetNameOrId", # required
|
2508
|
-
# stack_name: "StackNameOrId",
|
2509
|
-
# next_token: "NextToken",
|
2510
|
-
# }
|
2511
|
-
#
|
2512
2180
|
# @!attribute [rw] change_set_name
|
2513
2181
|
# The name or Amazon Resource Name (ARN) of the change set that you
|
2514
2182
|
# want to describe.
|
@@ -2662,13 +2330,6 @@ module Aws::CloudFormation
|
|
2662
2330
|
include Aws::Structure
|
2663
2331
|
end
|
2664
2332
|
|
2665
|
-
# @note When making an API call, you may pass DescribePublisherInput
|
2666
|
-
# data as a hash:
|
2667
|
-
#
|
2668
|
-
# {
|
2669
|
-
# publisher_id: "PublisherId",
|
2670
|
-
# }
|
2671
|
-
#
|
2672
2333
|
# @!attribute [rw] publisher_id
|
2673
2334
|
# The ID of the extension publisher.
|
2674
2335
|
#
|
@@ -2714,13 +2375,6 @@ module Aws::CloudFormation
|
|
2714
2375
|
include Aws::Structure
|
2715
2376
|
end
|
2716
2377
|
|
2717
|
-
# @note When making an API call, you may pass DescribeStackDriftDetectionStatusInput
|
2718
|
-
# data as a hash:
|
2719
|
-
#
|
2720
|
-
# {
|
2721
|
-
# stack_drift_detection_id: "StackDriftDetectionId", # required
|
2722
|
-
# }
|
2723
|
-
#
|
2724
2378
|
# @!attribute [rw] stack_drift_detection_id
|
2725
2379
|
# The ID of the drift detection results of this operation.
|
2726
2380
|
#
|
@@ -2821,14 +2475,6 @@ module Aws::CloudFormation
|
|
2821
2475
|
|
2822
2476
|
# The input for DescribeStackEvents action.
|
2823
2477
|
#
|
2824
|
-
# @note When making an API call, you may pass DescribeStackEventsInput
|
2825
|
-
# data as a hash:
|
2826
|
-
#
|
2827
|
-
# {
|
2828
|
-
# stack_name: "StackName",
|
2829
|
-
# next_token: "NextToken",
|
2830
|
-
# }
|
2831
|
-
#
|
2832
2478
|
# @!attribute [rw] stack_name
|
2833
2479
|
# The name or the unique stack ID that's associated with the stack,
|
2834
2480
|
# which aren't always interchangeable:
|
@@ -2876,16 +2522,6 @@ module Aws::CloudFormation
|
|
2876
2522
|
include Aws::Structure
|
2877
2523
|
end
|
2878
2524
|
|
2879
|
-
# @note When making an API call, you may pass DescribeStackInstanceInput
|
2880
|
-
# data as a hash:
|
2881
|
-
#
|
2882
|
-
# {
|
2883
|
-
# stack_set_name: "StackSetName", # required
|
2884
|
-
# stack_instance_account: "Account", # required
|
2885
|
-
# stack_instance_region: "Region", # required
|
2886
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2887
|
-
# }
|
2888
|
-
#
|
2889
2525
|
# @!attribute [rw] stack_set_name
|
2890
2526
|
# The name or the unique stack ID of the stack set that you want to
|
2891
2527
|
# get stack instance information for.
|
@@ -2946,16 +2582,6 @@ module Aws::CloudFormation
|
|
2946
2582
|
include Aws::Structure
|
2947
2583
|
end
|
2948
2584
|
|
2949
|
-
# @note When making an API call, you may pass DescribeStackResourceDriftsInput
|
2950
|
-
# data as a hash:
|
2951
|
-
#
|
2952
|
-
# {
|
2953
|
-
# stack_name: "StackNameOrId", # required
|
2954
|
-
# stack_resource_drift_status_filters: ["IN_SYNC"], # accepts IN_SYNC, MODIFIED, DELETED, NOT_CHECKED
|
2955
|
-
# next_token: "NextToken",
|
2956
|
-
# max_results: 1,
|
2957
|
-
# }
|
2958
|
-
#
|
2959
2585
|
# @!attribute [rw] stack_name
|
2960
2586
|
# The name of the stack for which you want drift information.
|
2961
2587
|
# @return [String]
|
@@ -3037,14 +2663,6 @@ module Aws::CloudFormation
|
|
3037
2663
|
|
3038
2664
|
# The input for DescribeStackResource action.
|
3039
2665
|
#
|
3040
|
-
# @note When making an API call, you may pass DescribeStackResourceInput
|
3041
|
-
# data as a hash:
|
3042
|
-
#
|
3043
|
-
# {
|
3044
|
-
# stack_name: "StackName", # required
|
3045
|
-
# logical_resource_id: "LogicalResourceId", # required
|
3046
|
-
# }
|
3047
|
-
#
|
3048
2666
|
# @!attribute [rw] stack_name
|
3049
2667
|
# The name or the unique stack ID that's associated with the stack,
|
3050
2668
|
# which aren't always interchangeable:
|
@@ -3089,15 +2707,6 @@ module Aws::CloudFormation
|
|
3089
2707
|
|
3090
2708
|
# The input for DescribeStackResources action.
|
3091
2709
|
#
|
3092
|
-
# @note When making an API call, you may pass DescribeStackResourcesInput
|
3093
|
-
# data as a hash:
|
3094
|
-
#
|
3095
|
-
# {
|
3096
|
-
# stack_name: "StackName",
|
3097
|
-
# logical_resource_id: "LogicalResourceId",
|
3098
|
-
# physical_resource_id: "PhysicalResourceId",
|
3099
|
-
# }
|
3100
|
-
#
|
3101
2710
|
# @!attribute [rw] stack_name
|
3102
2711
|
# The name or the unique stack ID that is associated with the stack,
|
3103
2712
|
# which aren't always interchangeable:
|
@@ -3159,14 +2768,6 @@ module Aws::CloudFormation
|
|
3159
2768
|
include Aws::Structure
|
3160
2769
|
end
|
3161
2770
|
|
3162
|
-
# @note When making an API call, you may pass DescribeStackSetInput
|
3163
|
-
# data as a hash:
|
3164
|
-
#
|
3165
|
-
# {
|
3166
|
-
# stack_set_name: "StackSetName", # required
|
3167
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3168
|
-
# }
|
3169
|
-
#
|
3170
2771
|
# @!attribute [rw] stack_set_name
|
3171
2772
|
# The name or unique ID of the stack set whose description you want.
|
3172
2773
|
# @return [String]
|
@@ -3203,15 +2804,6 @@ module Aws::CloudFormation
|
|
3203
2804
|
include Aws::Structure
|
3204
2805
|
end
|
3205
2806
|
|
3206
|
-
# @note When making an API call, you may pass DescribeStackSetOperationInput
|
3207
|
-
# data as a hash:
|
3208
|
-
#
|
3209
|
-
# {
|
3210
|
-
# stack_set_name: "StackSetName", # required
|
3211
|
-
# operation_id: "ClientRequestToken", # required
|
3212
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3213
|
-
# }
|
3214
|
-
#
|
3215
2807
|
# @!attribute [rw] stack_set_name
|
3216
2808
|
# The name or the unique stack ID of the stack set for the stack
|
3217
2809
|
# operation.
|
@@ -3280,14 +2872,6 @@ module Aws::CloudFormation
|
|
3280
2872
|
|
3281
2873
|
# The input for DescribeStacks action.
|
3282
2874
|
#
|
3283
|
-
# @note When making an API call, you may pass DescribeStacksInput
|
3284
|
-
# data as a hash:
|
3285
|
-
#
|
3286
|
-
# {
|
3287
|
-
# stack_name: "StackName",
|
3288
|
-
# next_token: "NextToken",
|
3289
|
-
# }
|
3290
|
-
#
|
3291
2875
|
# @!attribute [rw] stack_name
|
3292
2876
|
# The name or the unique stack ID that's associated with the stack,
|
3293
2877
|
# which aren't always interchangeable:
|
@@ -3335,18 +2919,6 @@ module Aws::CloudFormation
|
|
3335
2919
|
include Aws::Structure
|
3336
2920
|
end
|
3337
2921
|
|
3338
|
-
# @note When making an API call, you may pass DescribeTypeInput
|
3339
|
-
# data as a hash:
|
3340
|
-
#
|
3341
|
-
# {
|
3342
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
3343
|
-
# type_name: "TypeName",
|
3344
|
-
# arn: "TypeArn",
|
3345
|
-
# version_id: "TypeVersionId",
|
3346
|
-
# publisher_id: "PublisherId",
|
3347
|
-
# public_version_number: "PublicVersionNumber",
|
3348
|
-
# }
|
3349
|
-
#
|
3350
2922
|
# @!attribute [rw] type
|
3351
2923
|
# The kind of extension.
|
3352
2924
|
#
|
@@ -3738,13 +3310,6 @@ module Aws::CloudFormation
|
|
3738
3310
|
include Aws::Structure
|
3739
3311
|
end
|
3740
3312
|
|
3741
|
-
# @note When making an API call, you may pass DescribeTypeRegistrationInput
|
3742
|
-
# data as a hash:
|
3743
|
-
#
|
3744
|
-
# {
|
3745
|
-
# registration_token: "RegistrationToken", # required
|
3746
|
-
# }
|
3747
|
-
#
|
3748
3313
|
# @!attribute [rw] registration_token
|
3749
3314
|
# The identifier for this registration request.
|
3750
3315
|
#
|
@@ -3794,14 +3359,6 @@ module Aws::CloudFormation
|
|
3794
3359
|
include Aws::Structure
|
3795
3360
|
end
|
3796
3361
|
|
3797
|
-
# @note When making an API call, you may pass DetectStackDriftInput
|
3798
|
-
# data as a hash:
|
3799
|
-
#
|
3800
|
-
# {
|
3801
|
-
# stack_name: "StackNameOrId", # required
|
3802
|
-
# logical_resource_ids: ["LogicalResourceId"],
|
3803
|
-
# }
|
3804
|
-
#
|
3805
3362
|
# @!attribute [rw] stack_name
|
3806
3363
|
# The name of the stack for which you want to detect drift.
|
3807
3364
|
# @return [String]
|
@@ -3836,14 +3393,6 @@ module Aws::CloudFormation
|
|
3836
3393
|
include Aws::Structure
|
3837
3394
|
end
|
3838
3395
|
|
3839
|
-
# @note When making an API call, you may pass DetectStackResourceDriftInput
|
3840
|
-
# data as a hash:
|
3841
|
-
#
|
3842
|
-
# {
|
3843
|
-
# stack_name: "StackNameOrId", # required
|
3844
|
-
# logical_resource_id: "LogicalResourceId", # required
|
3845
|
-
# }
|
3846
|
-
#
|
3847
3396
|
# @!attribute [rw] stack_name
|
3848
3397
|
# The name of the stack to which the resource belongs.
|
3849
3398
|
# @return [String]
|
@@ -3876,23 +3425,6 @@ module Aws::CloudFormation
|
|
3876
3425
|
include Aws::Structure
|
3877
3426
|
end
|
3878
3427
|
|
3879
|
-
# @note When making an API call, you may pass DetectStackSetDriftInput
|
3880
|
-
# data as a hash:
|
3881
|
-
#
|
3882
|
-
# {
|
3883
|
-
# stack_set_name: "StackSetNameOrId", # required
|
3884
|
-
# operation_preferences: {
|
3885
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
3886
|
-
# region_order: ["Region"],
|
3887
|
-
# failure_tolerance_count: 1,
|
3888
|
-
# failure_tolerance_percentage: 1,
|
3889
|
-
# max_concurrent_count: 1,
|
3890
|
-
# max_concurrent_percentage: 1,
|
3891
|
-
# },
|
3892
|
-
# operation_id: "ClientRequestToken",
|
3893
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3894
|
-
# }
|
3895
|
-
#
|
3896
3428
|
# @!attribute [rw] stack_set_name
|
3897
3429
|
# The name of the stack set on which to perform the drift detection
|
3898
3430
|
# operation.
|
@@ -3968,22 +3500,6 @@ module Aws::CloudFormation
|
|
3968
3500
|
|
3969
3501
|
# The input for an EstimateTemplateCost action.
|
3970
3502
|
#
|
3971
|
-
# @note When making an API call, you may pass EstimateTemplateCostInput
|
3972
|
-
# data as a hash:
|
3973
|
-
#
|
3974
|
-
# {
|
3975
|
-
# template_body: "TemplateBody",
|
3976
|
-
# template_url: "TemplateURL",
|
3977
|
-
# parameters: [
|
3978
|
-
# {
|
3979
|
-
# parameter_key: "ParameterKey",
|
3980
|
-
# parameter_value: "ParameterValue",
|
3981
|
-
# use_previous_value: false,
|
3982
|
-
# resolved_value: "ParameterValue",
|
3983
|
-
# },
|
3984
|
-
# ],
|
3985
|
-
# }
|
3986
|
-
#
|
3987
3503
|
# @!attribute [rw] template_body
|
3988
3504
|
# Structure containing the template body with a minimum length of 1
|
3989
3505
|
# byte and a maximum length of 51,200 bytes. (For more information, go
|
@@ -4042,16 +3558,6 @@ module Aws::CloudFormation
|
|
4042
3558
|
|
4043
3559
|
# The input for the ExecuteChangeSet action.
|
4044
3560
|
#
|
4045
|
-
# @note When making an API call, you may pass ExecuteChangeSetInput
|
4046
|
-
# data as a hash:
|
4047
|
-
#
|
4048
|
-
# {
|
4049
|
-
# change_set_name: "ChangeSetNameOrId", # required
|
4050
|
-
# stack_name: "StackNameOrId",
|
4051
|
-
# client_request_token: "ClientRequestToken",
|
4052
|
-
# disable_rollback: false,
|
4053
|
-
# }
|
4054
|
-
#
|
4055
3561
|
# @!attribute [rw] change_set_name
|
4056
3562
|
# The name or Amazon Resource Name (ARN) of the change set that you
|
4057
3563
|
# want use to update the specified stack.
|
@@ -4127,13 +3633,6 @@ module Aws::CloudFormation
|
|
4127
3633
|
|
4128
3634
|
# The input for the GetStackPolicy action.
|
4129
3635
|
#
|
4130
|
-
# @note When making an API call, you may pass GetStackPolicyInput
|
4131
|
-
# data as a hash:
|
4132
|
-
#
|
4133
|
-
# {
|
4134
|
-
# stack_name: "StackName", # required
|
4135
|
-
# }
|
4136
|
-
#
|
4137
3636
|
# @!attribute [rw] stack_name
|
4138
3637
|
# The name or unique stack ID that's associated with the stack whose
|
4139
3638
|
# policy you want to get.
|
@@ -4169,15 +3668,6 @@ module Aws::CloudFormation
|
|
4169
3668
|
|
4170
3669
|
# The input for a GetTemplate action.
|
4171
3670
|
#
|
4172
|
-
# @note When making an API call, you may pass GetTemplateInput
|
4173
|
-
# data as a hash:
|
4174
|
-
#
|
4175
|
-
# {
|
4176
|
-
# stack_name: "StackName",
|
4177
|
-
# change_set_name: "ChangeSetNameOrId",
|
4178
|
-
# template_stage: "Original", # accepts Original, Processed
|
4179
|
-
# }
|
4180
|
-
#
|
4181
3671
|
# @!attribute [rw] stack_name
|
4182
3672
|
# The name or the unique stack ID that's associated with the stack,
|
4183
3673
|
# which aren't always interchangeable:
|
@@ -4250,17 +3740,6 @@ module Aws::CloudFormation
|
|
4250
3740
|
|
4251
3741
|
# The input for the GetTemplateSummary action.
|
4252
3742
|
#
|
4253
|
-
# @note When making an API call, you may pass GetTemplateSummaryInput
|
4254
|
-
# data as a hash:
|
4255
|
-
#
|
4256
|
-
# {
|
4257
|
-
# template_body: "TemplateBody",
|
4258
|
-
# template_url: "TemplateURL",
|
4259
|
-
# stack_name: "StackNameOrId",
|
4260
|
-
# stack_set_name: "StackSetNameOrId",
|
4261
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4262
|
-
# }
|
4263
|
-
#
|
4264
3743
|
# @!attribute [rw] template_body
|
4265
3744
|
# Structure containing the template body with a minimum length of 1
|
4266
3745
|
# byte and a maximum length of 51,200 bytes. For more information
|
@@ -4419,26 +3898,6 @@ module Aws::CloudFormation
|
|
4419
3898
|
include Aws::Structure
|
4420
3899
|
end
|
4421
3900
|
|
4422
|
-
# @note When making an API call, you may pass ImportStacksToStackSetInput
|
4423
|
-
# data as a hash:
|
4424
|
-
#
|
4425
|
-
# {
|
4426
|
-
# stack_set_name: "StackSetNameOrId", # required
|
4427
|
-
# stack_ids: ["StackId"],
|
4428
|
-
# stack_ids_url: "StackIdsUrl",
|
4429
|
-
# organizational_unit_ids: ["OrganizationalUnitId"],
|
4430
|
-
# operation_preferences: {
|
4431
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
4432
|
-
# region_order: ["Region"],
|
4433
|
-
# failure_tolerance_count: 1,
|
4434
|
-
# failure_tolerance_percentage: 1,
|
4435
|
-
# max_concurrent_count: 1,
|
4436
|
-
# max_concurrent_percentage: 1,
|
4437
|
-
# },
|
4438
|
-
# operation_id: "ClientRequestToken",
|
4439
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4440
|
-
# }
|
4441
|
-
#
|
4442
3901
|
# @!attribute [rw] stack_set_name
|
4443
3902
|
# The name of the stack set. The name must be unique in the Region
|
4444
3903
|
# where you create your stack set.
|
@@ -4563,14 +4022,6 @@ module Aws::CloudFormation
|
|
4563
4022
|
|
4564
4023
|
# The input for the ListChangeSets action.
|
4565
4024
|
#
|
4566
|
-
# @note When making an API call, you may pass ListChangeSetsInput
|
4567
|
-
# data as a hash:
|
4568
|
-
#
|
4569
|
-
# {
|
4570
|
-
# stack_name: "StackNameOrId", # required
|
4571
|
-
# next_token: "NextToken",
|
4572
|
-
# }
|
4573
|
-
#
|
4574
4025
|
# @!attribute [rw] stack_name
|
4575
4026
|
# The name or the Amazon Resource Name (ARN) of the stack for which
|
4576
4027
|
# you want to list change sets.
|
@@ -4612,13 +4063,6 @@ module Aws::CloudFormation
|
|
4612
4063
|
include Aws::Structure
|
4613
4064
|
end
|
4614
4065
|
|
4615
|
-
# @note When making an API call, you may pass ListExportsInput
|
4616
|
-
# data as a hash:
|
4617
|
-
#
|
4618
|
-
# {
|
4619
|
-
# next_token: "NextToken",
|
4620
|
-
# }
|
4621
|
-
#
|
4622
4066
|
# @!attribute [rw] next_token
|
4623
4067
|
# A string (provided by the ListExports response output) that
|
4624
4068
|
# identifies the next page of exported output values that you asked to
|
@@ -4652,14 +4096,6 @@ module Aws::CloudFormation
|
|
4652
4096
|
include Aws::Structure
|
4653
4097
|
end
|
4654
4098
|
|
4655
|
-
# @note When making an API call, you may pass ListImportsInput
|
4656
|
-
# data as a hash:
|
4657
|
-
#
|
4658
|
-
# {
|
4659
|
-
# export_name: "ExportName", # required
|
4660
|
-
# next_token: "NextToken",
|
4661
|
-
# }
|
4662
|
-
#
|
4663
4099
|
# @!attribute [rw] export_name
|
4664
4100
|
# The name of the exported output value. CloudFormation returns the
|
4665
4101
|
# stack names that are importing this value.
|
@@ -4699,24 +4135,6 @@ module Aws::CloudFormation
|
|
4699
4135
|
include Aws::Structure
|
4700
4136
|
end
|
4701
4137
|
|
4702
|
-
# @note When making an API call, you may pass ListStackInstancesInput
|
4703
|
-
# data as a hash:
|
4704
|
-
#
|
4705
|
-
# {
|
4706
|
-
# stack_set_name: "StackSetName", # required
|
4707
|
-
# next_token: "NextToken",
|
4708
|
-
# max_results: 1,
|
4709
|
-
# filters: [
|
4710
|
-
# {
|
4711
|
-
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID
|
4712
|
-
# values: "StackInstanceFilterValues",
|
4713
|
-
# },
|
4714
|
-
# ],
|
4715
|
-
# stack_instance_account: "Account",
|
4716
|
-
# stack_instance_region: "Region",
|
4717
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4718
|
-
# }
|
4719
|
-
#
|
4720
4138
|
# @!attribute [rw] stack_set_name
|
4721
4139
|
# The name or unique ID of the stack set that you want to list stack
|
4722
4140
|
# instances for.
|
@@ -4812,14 +4230,6 @@ module Aws::CloudFormation
|
|
4812
4230
|
|
4813
4231
|
# The input for the ListStackResource action.
|
4814
4232
|
#
|
4815
|
-
# @note When making an API call, you may pass ListStackResourcesInput
|
4816
|
-
# data as a hash:
|
4817
|
-
#
|
4818
|
-
# {
|
4819
|
-
# stack_name: "StackName", # required
|
4820
|
-
# next_token: "NextToken",
|
4821
|
-
# }
|
4822
|
-
#
|
4823
4233
|
# @!attribute [rw] stack_name
|
4824
4234
|
# The name or the unique stack ID that is associated with the stack,
|
4825
4235
|
# which aren't always interchangeable:
|
@@ -4867,23 +4277,6 @@ module Aws::CloudFormation
|
|
4867
4277
|
include Aws::Structure
|
4868
4278
|
end
|
4869
4279
|
|
4870
|
-
# @note When making an API call, you may pass ListStackSetOperationResultsInput
|
4871
|
-
# data as a hash:
|
4872
|
-
#
|
4873
|
-
# {
|
4874
|
-
# stack_set_name: "StackSetName", # required
|
4875
|
-
# operation_id: "ClientRequestToken", # required
|
4876
|
-
# next_token: "NextToken",
|
4877
|
-
# max_results: 1,
|
4878
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4879
|
-
# filters: [
|
4880
|
-
# {
|
4881
|
-
# name: "OPERATION_RESULT_STATUS", # accepts OPERATION_RESULT_STATUS
|
4882
|
-
# values: "OperationResultFilterValues",
|
4883
|
-
# },
|
4884
|
-
# ],
|
4885
|
-
# }
|
4886
|
-
#
|
4887
4280
|
# @!attribute [rw] stack_set_name
|
4888
4281
|
# The name or unique ID of the stack set that you want to get
|
4889
4282
|
# operation results for.
|
@@ -4973,16 +4366,6 @@ module Aws::CloudFormation
|
|
4973
4366
|
include Aws::Structure
|
4974
4367
|
end
|
4975
4368
|
|
4976
|
-
# @note When making an API call, you may pass ListStackSetOperationsInput
|
4977
|
-
# data as a hash:
|
4978
|
-
#
|
4979
|
-
# {
|
4980
|
-
# stack_set_name: "StackSetName", # required
|
4981
|
-
# next_token: "NextToken",
|
4982
|
-
# max_results: 1,
|
4983
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
4984
|
-
# }
|
4985
|
-
#
|
4986
4369
|
# @!attribute [rw] stack_set_name
|
4987
4370
|
# The name or unique ID of the stack set that you want to get
|
4988
4371
|
# operation summaries for.
|
@@ -5061,16 +4444,6 @@ module Aws::CloudFormation
|
|
5061
4444
|
include Aws::Structure
|
5062
4445
|
end
|
5063
4446
|
|
5064
|
-
# @note When making an API call, you may pass ListStackSetsInput
|
5065
|
-
# data as a hash:
|
5066
|
-
#
|
5067
|
-
# {
|
5068
|
-
# next_token: "NextToken",
|
5069
|
-
# max_results: 1,
|
5070
|
-
# status: "ACTIVE", # accepts ACTIVE, DELETED
|
5071
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
5072
|
-
# }
|
5073
|
-
#
|
5074
4447
|
# @!attribute [rw] next_token
|
5075
4448
|
# If the previous paginated request didn't return all the remaining
|
5076
4449
|
# results, the response object's `NextToken` parameter value is set
|
@@ -5150,14 +4523,6 @@ module Aws::CloudFormation
|
|
5150
4523
|
|
5151
4524
|
# The input for ListStacks action.
|
5152
4525
|
#
|
5153
|
-
# @note When making an API call, you may pass ListStacksInput
|
5154
|
-
# data as a hash:
|
5155
|
-
#
|
5156
|
-
# {
|
5157
|
-
# next_token: "NextToken",
|
5158
|
-
# stack_status_filter: ["CREATE_IN_PROGRESS"], # accepts CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, ROLLBACK_IN_PROGRESS, ROLLBACK_FAILED, ROLLBACK_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE, UPDATE_IN_PROGRESS, UPDATE_COMPLETE_CLEANUP_IN_PROGRESS, UPDATE_COMPLETE, UPDATE_FAILED, UPDATE_ROLLBACK_IN_PROGRESS, UPDATE_ROLLBACK_FAILED, UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS, UPDATE_ROLLBACK_COMPLETE, REVIEW_IN_PROGRESS, IMPORT_IN_PROGRESS, IMPORT_COMPLETE, IMPORT_ROLLBACK_IN_PROGRESS, IMPORT_ROLLBACK_FAILED, IMPORT_ROLLBACK_COMPLETE
|
5159
|
-
# }
|
5160
|
-
#
|
5161
4526
|
# @!attribute [rw] next_token
|
5162
4527
|
# A string that identifies the next page of stacks that you want to
|
5163
4528
|
# retrieve.
|
@@ -5201,18 +4566,6 @@ module Aws::CloudFormation
|
|
5201
4566
|
include Aws::Structure
|
5202
4567
|
end
|
5203
4568
|
|
5204
|
-
# @note When making an API call, you may pass ListTypeRegistrationsInput
|
5205
|
-
# data as a hash:
|
5206
|
-
#
|
5207
|
-
# {
|
5208
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
5209
|
-
# type_name: "TypeName",
|
5210
|
-
# type_arn: "TypeArn",
|
5211
|
-
# registration_status_filter: "COMPLETE", # accepts COMPLETE, IN_PROGRESS, FAILED
|
5212
|
-
# max_results: 1,
|
5213
|
-
# next_token: "NextToken",
|
5214
|
-
# }
|
5215
|
-
#
|
5216
4569
|
# @!attribute [rw] type
|
5217
4570
|
# The kind of extension.
|
5218
4571
|
#
|
@@ -5293,19 +4646,6 @@ module Aws::CloudFormation
|
|
5293
4646
|
include Aws::Structure
|
5294
4647
|
end
|
5295
4648
|
|
5296
|
-
# @note When making an API call, you may pass ListTypeVersionsInput
|
5297
|
-
# data as a hash:
|
5298
|
-
#
|
5299
|
-
# {
|
5300
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
5301
|
-
# type_name: "TypeName",
|
5302
|
-
# arn: "TypeArn",
|
5303
|
-
# max_results: 1,
|
5304
|
-
# next_token: "NextToken",
|
5305
|
-
# deprecated_status: "LIVE", # accepts LIVE, DEPRECATED
|
5306
|
-
# publisher_id: "PublisherId",
|
5307
|
-
# }
|
5308
|
-
#
|
5309
4649
|
# @!attribute [rw] type
|
5310
4650
|
# The kind of the extension.
|
5311
4651
|
#
|
@@ -5403,23 +4743,6 @@ module Aws::CloudFormation
|
|
5403
4743
|
include Aws::Structure
|
5404
4744
|
end
|
5405
4745
|
|
5406
|
-
# @note When making an API call, you may pass ListTypesInput
|
5407
|
-
# data as a hash:
|
5408
|
-
#
|
5409
|
-
# {
|
5410
|
-
# visibility: "PUBLIC", # accepts PUBLIC, PRIVATE
|
5411
|
-
# provisioning_type: "NON_PROVISIONABLE", # accepts NON_PROVISIONABLE, IMMUTABLE, FULLY_MUTABLE
|
5412
|
-
# deprecated_status: "LIVE", # accepts LIVE, DEPRECATED
|
5413
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
5414
|
-
# filters: {
|
5415
|
-
# category: "REGISTERED", # accepts REGISTERED, ACTIVATED, THIRD_PARTY, AWS_TYPES
|
5416
|
-
# publisher_id: "PublisherId",
|
5417
|
-
# type_name_prefix: "TypeNamePrefix",
|
5418
|
-
# },
|
5419
|
-
# max_results: 1,
|
5420
|
-
# next_token: "NextToken",
|
5421
|
-
# }
|
5422
|
-
#
|
5423
4746
|
# @!attribute [rw] visibility
|
5424
4747
|
# The scope at which the extensions are visible and usable in
|
5425
4748
|
# CloudFormation operations.
|
@@ -5545,14 +4868,6 @@ module Aws::CloudFormation
|
|
5545
4868
|
|
5546
4869
|
# Contains logging configuration information for an extension.
|
5547
4870
|
#
|
5548
|
-
# @note When making an API call, you may pass LoggingConfig
|
5549
|
-
# data as a hash:
|
5550
|
-
#
|
5551
|
-
# {
|
5552
|
-
# log_role_arn: "RoleArn", # required
|
5553
|
-
# log_group_name: "LogGroupName", # required
|
5554
|
-
# }
|
5555
|
-
#
|
5556
4871
|
# @!attribute [rw] log_role_arn
|
5557
4872
|
# The Amazon Resource Name (ARN) of the role that CloudFormation
|
5558
4873
|
# should assume when sending log entries to CloudWatch Logs.
|
@@ -5575,13 +4890,6 @@ module Aws::CloudFormation
|
|
5575
4890
|
# Describes whether StackSets performs non-conflicting operations
|
5576
4891
|
# concurrently and queues conflicting operations.
|
5577
4892
|
#
|
5578
|
-
# @note When making an API call, you may pass ManagedExecution
|
5579
|
-
# data as a hash:
|
5580
|
-
#
|
5581
|
-
# {
|
5582
|
-
# active: false,
|
5583
|
-
# }
|
5584
|
-
#
|
5585
4893
|
# @!attribute [rw] active
|
5586
4894
|
# When `true`, StackSets performs non-conflicting operations
|
5587
4895
|
# concurrently and queues conflicting operations. After conflicting
|
@@ -5680,14 +4988,6 @@ module Aws::CloudFormation
|
|
5680
4988
|
|
5681
4989
|
# The status that operation results are filtered by.
|
5682
4990
|
#
|
5683
|
-
# @note When making an API call, you may pass OperationResultFilter
|
5684
|
-
# data as a hash:
|
5685
|
-
#
|
5686
|
-
# {
|
5687
|
-
# name: "OPERATION_RESULT_STATUS", # accepts OPERATION_RESULT_STATUS
|
5688
|
-
# values: "OperationResultFilterValues",
|
5689
|
-
# }
|
5690
|
-
#
|
5691
4991
|
# @!attribute [rw] name
|
5692
4992
|
# The type of filter to apply.
|
5693
4993
|
# @return [String]
|
@@ -5747,16 +5047,6 @@ module Aws::CloudFormation
|
|
5747
5047
|
|
5748
5048
|
# The Parameter data type.
|
5749
5049
|
#
|
5750
|
-
# @note When making an API call, you may pass Parameter
|
5751
|
-
# data as a hash:
|
5752
|
-
#
|
5753
|
-
# {
|
5754
|
-
# parameter_key: "ParameterKey",
|
5755
|
-
# parameter_value: "ParameterValue",
|
5756
|
-
# use_previous_value: false,
|
5757
|
-
# resolved_value: "ParameterValue",
|
5758
|
-
# }
|
5759
|
-
#
|
5760
5050
|
# @!attribute [rw] parameter_key
|
5761
5051
|
# The key associated with the parameter. If you don't specify a key
|
5762
5052
|
# and value for a particular parameter, CloudFormation uses the
|
@@ -5922,16 +5212,6 @@ module Aws::CloudFormation
|
|
5922
5212
|
include Aws::Structure
|
5923
5213
|
end
|
5924
5214
|
|
5925
|
-
# @note When making an API call, you may pass PublishTypeInput
|
5926
|
-
# data as a hash:
|
5927
|
-
#
|
5928
|
-
# {
|
5929
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
5930
|
-
# arn: "PrivateTypeArn",
|
5931
|
-
# type_name: "TypeName",
|
5932
|
-
# public_version_number: "PublicVersionNumber",
|
5933
|
-
# }
|
5934
|
-
#
|
5935
5215
|
# @!attribute [rw] type
|
5936
5216
|
# The type of the extension.
|
5937
5217
|
#
|
@@ -5996,19 +5276,6 @@ module Aws::CloudFormation
|
|
5996
5276
|
include Aws::Structure
|
5997
5277
|
end
|
5998
5278
|
|
5999
|
-
# @note When making an API call, you may pass RecordHandlerProgressInput
|
6000
|
-
# data as a hash:
|
6001
|
-
#
|
6002
|
-
# {
|
6003
|
-
# bearer_token: "ClientToken", # required
|
6004
|
-
# operation_status: "PENDING", # required, accepts PENDING, IN_PROGRESS, SUCCESS, FAILED
|
6005
|
-
# current_operation_status: "PENDING", # accepts PENDING, IN_PROGRESS, SUCCESS, FAILED
|
6006
|
-
# status_message: "StatusMessage",
|
6007
|
-
# error_code: "NotUpdatable", # accepts NotUpdatable, InvalidRequest, AccessDenied, InvalidCredentials, AlreadyExists, NotFound, ResourceConflict, Throttling, ServiceLimitExceeded, NotStabilized, GeneralServiceException, ServiceInternalError, NetworkFailure, InternalFailure, InvalidTypeConfiguration, HandlerInternalFailure, NonCompliant, Unknown
|
6008
|
-
# resource_model: "ResourceModel",
|
6009
|
-
# client_request_token: "ClientRequestToken",
|
6010
|
-
# }
|
6011
|
-
#
|
6012
5279
|
# @!attribute [rw] bearer_token
|
6013
5280
|
# Reserved for use by the [CloudFormation CLI][1].
|
6014
5281
|
#
|
@@ -6083,14 +5350,6 @@ module Aws::CloudFormation
|
|
6083
5350
|
#
|
6084
5351
|
class RecordHandlerProgressOutput < Aws::EmptyStructure; end
|
6085
5352
|
|
6086
|
-
# @note When making an API call, you may pass RegisterPublisherInput
|
6087
|
-
# data as a hash:
|
6088
|
-
#
|
6089
|
-
# {
|
6090
|
-
# accept_terms_and_conditions: false,
|
6091
|
-
# connection_arn: "ConnectionArn",
|
6092
|
-
# }
|
6093
|
-
#
|
6094
5353
|
# @!attribute [rw] accept_terms_and_conditions
|
6095
5354
|
# Whether you accept the [Terms and Conditions][1] for publishing
|
6096
5355
|
# extensions in the CloudFormation registry. You must accept the terms
|
@@ -6140,21 +5399,6 @@ module Aws::CloudFormation
|
|
6140
5399
|
include Aws::Structure
|
6141
5400
|
end
|
6142
5401
|
|
6143
|
-
# @note When making an API call, you may pass RegisterTypeInput
|
6144
|
-
# data as a hash:
|
6145
|
-
#
|
6146
|
-
# {
|
6147
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
6148
|
-
# type_name: "TypeName", # required
|
6149
|
-
# schema_handler_package: "S3Url", # required
|
6150
|
-
# logging_config: {
|
6151
|
-
# log_role_arn: "RoleArn", # required
|
6152
|
-
# log_group_name: "LogGroupName", # required
|
6153
|
-
# },
|
6154
|
-
# execution_role_arn: "RoleArn",
|
6155
|
-
# client_request_token: "RequestToken",
|
6156
|
-
# }
|
6157
|
-
#
|
6158
5402
|
# @!attribute [rw] type
|
6159
5403
|
# The kind of extension.
|
6160
5404
|
# @return [String]
|
@@ -6560,17 +5804,6 @@ module Aws::CloudFormation
|
|
6560
5804
|
|
6561
5805
|
# Describes the target resource of an import operation.
|
6562
5806
|
#
|
6563
|
-
# @note When making an API call, you may pass ResourceToImport
|
6564
|
-
# data as a hash:
|
6565
|
-
#
|
6566
|
-
# {
|
6567
|
-
# resource_type: "ResourceType", # required
|
6568
|
-
# logical_resource_id: "LogicalResourceId", # required
|
6569
|
-
# resource_identifier: { # required
|
6570
|
-
# "ResourceIdentifierPropertyKey" => "ResourceIdentifierPropertyValue",
|
6571
|
-
# },
|
6572
|
-
# }
|
6573
|
-
#
|
6574
5807
|
# @!attribute [rw] resource_type
|
6575
5808
|
# The type of resource to import into your stack, such as
|
6576
5809
|
# `AWS::S3::Bucket`. For a list of supported resource types, see
|
@@ -6617,19 +5850,6 @@ module Aws::CloudFormation
|
|
6617
5850
|
#
|
6618
5851
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-rollback-triggers.html
|
6619
5852
|
#
|
6620
|
-
# @note When making an API call, you may pass RollbackConfiguration
|
6621
|
-
# data as a hash:
|
6622
|
-
#
|
6623
|
-
# {
|
6624
|
-
# rollback_triggers: [
|
6625
|
-
# {
|
6626
|
-
# arn: "Arn", # required
|
6627
|
-
# type: "Type", # required
|
6628
|
-
# },
|
6629
|
-
# ],
|
6630
|
-
# monitoring_time_in_minutes: 1,
|
6631
|
-
# }
|
6632
|
-
#
|
6633
5853
|
# @!attribute [rw] rollback_triggers
|
6634
5854
|
# The triggers to monitor during stack creation or update actions.
|
6635
5855
|
#
|
@@ -6689,15 +5909,6 @@ module Aws::CloudFormation
|
|
6689
5909
|
include Aws::Structure
|
6690
5910
|
end
|
6691
5911
|
|
6692
|
-
# @note When making an API call, you may pass RollbackStackInput
|
6693
|
-
# data as a hash:
|
6694
|
-
#
|
6695
|
-
# {
|
6696
|
-
# stack_name: "StackNameOrId", # required
|
6697
|
-
# role_arn: "RoleARN",
|
6698
|
-
# client_request_token: "ClientRequestToken",
|
6699
|
-
# }
|
6700
|
-
#
|
6701
5912
|
# @!attribute [rw] stack_name
|
6702
5913
|
# The name that's associated with the stack.
|
6703
5914
|
# @return [String]
|
@@ -6739,14 +5950,6 @@ module Aws::CloudFormation
|
|
6739
5950
|
# period afterwards, CloudFormation rolls back the entire stack
|
6740
5951
|
# operation.
|
6741
5952
|
#
|
6742
|
-
# @note When making an API call, you may pass RollbackTrigger
|
6743
|
-
# data as a hash:
|
6744
|
-
#
|
6745
|
-
# {
|
6746
|
-
# arn: "Arn", # required
|
6747
|
-
# type: "Type", # required
|
6748
|
-
# }
|
6749
|
-
#
|
6750
5953
|
# @!attribute [rw] arn
|
6751
5954
|
# The Amazon Resource Name (ARN) of the rollback trigger.
|
6752
5955
|
#
|
@@ -6776,15 +5979,6 @@ module Aws::CloudFormation
|
|
6776
5979
|
|
6777
5980
|
# The input for the SetStackPolicy action.
|
6778
5981
|
#
|
6779
|
-
# @note When making an API call, you may pass SetStackPolicyInput
|
6780
|
-
# data as a hash:
|
6781
|
-
#
|
6782
|
-
# {
|
6783
|
-
# stack_name: "StackName", # required
|
6784
|
-
# stack_policy_body: "StackPolicyBody",
|
6785
|
-
# stack_policy_url: "StackPolicyURL",
|
6786
|
-
# }
|
6787
|
-
#
|
6788
5982
|
# @!attribute [rw] stack_name
|
6789
5983
|
# The name or unique stack ID that you want to associate a policy
|
6790
5984
|
# with.
|
@@ -6819,17 +6013,6 @@ module Aws::CloudFormation
|
|
6819
6013
|
include Aws::Structure
|
6820
6014
|
end
|
6821
6015
|
|
6822
|
-
# @note When making an API call, you may pass SetTypeConfigurationInput
|
6823
|
-
# data as a hash:
|
6824
|
-
#
|
6825
|
-
# {
|
6826
|
-
# type_arn: "TypeArn",
|
6827
|
-
# configuration: "TypeConfiguration", # required
|
6828
|
-
# configuration_alias: "TypeConfigurationAlias",
|
6829
|
-
# type_name: "TypeName",
|
6830
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
6831
|
-
# }
|
6832
|
-
#
|
6833
6016
|
# @!attribute [rw] type_arn
|
6834
6017
|
# The Amazon Resource Name (ARN) for the extension, in this account
|
6835
6018
|
# and region.
|
@@ -6914,16 +6097,6 @@ module Aws::CloudFormation
|
|
6914
6097
|
include Aws::Structure
|
6915
6098
|
end
|
6916
6099
|
|
6917
|
-
# @note When making an API call, you may pass SetTypeDefaultVersionInput
|
6918
|
-
# data as a hash:
|
6919
|
-
#
|
6920
|
-
# {
|
6921
|
-
# arn: "PrivateTypeArn",
|
6922
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
6923
|
-
# type_name: "TypeName",
|
6924
|
-
# version_id: "TypeVersionId",
|
6925
|
-
# }
|
6926
|
-
#
|
6927
6100
|
# @!attribute [rw] arn
|
6928
6101
|
# The Amazon Resource Name (ARN) of the extension for which you want
|
6929
6102
|
# version summary information.
|
@@ -6969,16 +6142,6 @@ module Aws::CloudFormation
|
|
6969
6142
|
|
6970
6143
|
# The input for the SignalResource action.
|
6971
6144
|
#
|
6972
|
-
# @note When making an API call, you may pass SignalResourceInput
|
6973
|
-
# data as a hash:
|
6974
|
-
#
|
6975
|
-
# {
|
6976
|
-
# stack_name: "StackNameOrId", # required
|
6977
|
-
# logical_resource_id: "LogicalResourceId", # required
|
6978
|
-
# unique_id: "ResourceSignalUniqueId", # required
|
6979
|
-
# status: "SUCCESS", # required, accepts SUCCESS, FAILURE
|
6980
|
-
# }
|
6981
|
-
#
|
6982
6145
|
# @!attribute [rw] stack_name
|
6983
6146
|
# The stack name or unique stack ID that includes the resource that
|
6984
6147
|
# you want to signal.
|
@@ -7537,14 +6700,6 @@ module Aws::CloudFormation
|
|
7537
6700
|
|
7538
6701
|
# The filter to apply to stack instances
|
7539
6702
|
#
|
7540
|
-
# @note When making an API call, you may pass StackInstanceFilter
|
7541
|
-
# data as a hash:
|
7542
|
-
#
|
7543
|
-
# {
|
7544
|
-
# name: "DETAILED_STATUS", # accepts DETAILED_STATUS, LAST_OPERATION_ID
|
7545
|
-
# values: "StackInstanceFilterValues",
|
7546
|
-
# }
|
7547
|
-
#
|
7548
6703
|
# @!attribute [rw] name
|
7549
6704
|
# The type of filter to apply.
|
7550
6705
|
# @return [String]
|
@@ -8565,18 +7720,6 @@ module Aws::CloudFormation
|
|
8565
7720
|
#
|
8566
7721
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
8567
7722
|
#
|
8568
|
-
# @note When making an API call, you may pass StackSetOperationPreferences
|
8569
|
-
# data as a hash:
|
8570
|
-
#
|
8571
|
-
# {
|
8572
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
8573
|
-
# region_order: ["Region"],
|
8574
|
-
# failure_tolerance_count: 1,
|
8575
|
-
# failure_tolerance_percentage: 1,
|
8576
|
-
# max_concurrent_count: 1,
|
8577
|
-
# max_concurrent_percentage: 1,
|
8578
|
-
# }
|
8579
|
-
#
|
8580
7723
|
# @!attribute [rw] region_concurrency_type
|
8581
7724
|
# The concurrency type of deploying StackSets operations in Regions,
|
8582
7725
|
# could be in parallel or one Region at a time.
|
@@ -9042,15 +8185,6 @@ module Aws::CloudFormation
|
|
9042
8185
|
#
|
9043
8186
|
class StaleRequestException < Aws::EmptyStructure; end
|
9044
8187
|
|
9045
|
-
# @note When making an API call, you may pass StopStackSetOperationInput
|
9046
|
-
# data as a hash:
|
9047
|
-
#
|
9048
|
-
# {
|
9049
|
-
# stack_set_name: "StackSetName", # required
|
9050
|
-
# operation_id: "ClientRequestToken", # required
|
9051
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
9052
|
-
# }
|
9053
|
-
#
|
9054
8188
|
# @!attribute [rw] stack_set_name
|
9055
8189
|
# The name or unique ID of the stack set that you want to stop the
|
9056
8190
|
# operation for.
|
@@ -9100,14 +8234,6 @@ module Aws::CloudFormation
|
|
9100
8234
|
# The Tag type enables you to specify a key-value pair that can be used
|
9101
8235
|
# to store information about an CloudFormation stack.
|
9102
8236
|
#
|
9103
|
-
# @note When making an API call, you may pass Tag
|
9104
|
-
# data as a hash:
|
9105
|
-
#
|
9106
|
-
# {
|
9107
|
-
# key: "TagKey", # required
|
9108
|
-
# value: "TagValue", # required
|
9109
|
-
# }
|
9110
|
-
#
|
9111
8237
|
# @!attribute [rw] key
|
9112
8238
|
# *Required*. A string used to identify this tag. You can specify a
|
9113
8239
|
# maximum of 128 characters for a tag key. Tags owned by Amazon Web
|
@@ -9158,17 +8284,6 @@ module Aws::CloudFormation
|
|
9158
8284
|
include Aws::Structure
|
9159
8285
|
end
|
9160
8286
|
|
9161
|
-
# @note When making an API call, you may pass TestTypeInput
|
9162
|
-
# data as a hash:
|
9163
|
-
#
|
9164
|
-
# {
|
9165
|
-
# arn: "TypeArn",
|
9166
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
9167
|
-
# type_name: "TypeName",
|
9168
|
-
# version_id: "TypeVersionId",
|
9169
|
-
# log_delivery_bucket: "S3Bucket",
|
9170
|
-
# }
|
9171
|
-
#
|
9172
8287
|
# @!attribute [rw] arn
|
9173
8288
|
# The Amazon Resource Name (ARN) of the extension.
|
9174
8289
|
#
|
@@ -9328,17 +8443,6 @@ module Aws::CloudFormation
|
|
9328
8443
|
# Identifying information for the configuration of a CloudFormation
|
9329
8444
|
# extension.
|
9330
8445
|
#
|
9331
|
-
# @note When making an API call, you may pass TypeConfigurationIdentifier
|
9332
|
-
# data as a hash:
|
9333
|
-
#
|
9334
|
-
# {
|
9335
|
-
# type_arn: "TypeArn",
|
9336
|
-
# type_configuration_alias: "TypeConfigurationAlias",
|
9337
|
-
# type_configuration_arn: "TypeConfigurationArn",
|
9338
|
-
# type: "RESOURCE", # accepts RESOURCE, MODULE, HOOK
|
9339
|
-
# type_name: "TypeName",
|
9340
|
-
# }
|
9341
|
-
#
|
9342
8446
|
# @!attribute [rw] type_arn
|
9343
8447
|
# The Amazon Resource Name (ARN) for the extension, in this account
|
9344
8448
|
# and region.
|
@@ -9392,15 +8496,6 @@ module Aws::CloudFormation
|
|
9392
8496
|
|
9393
8497
|
# Filter criteria to use in determining which extensions to return.
|
9394
8498
|
#
|
9395
|
-
# @note When making an API call, you may pass TypeFilters
|
9396
|
-
# data as a hash:
|
9397
|
-
#
|
9398
|
-
# {
|
9399
|
-
# category: "REGISTERED", # accepts REGISTERED, ACTIVATED, THIRD_PARTY, AWS_TYPES
|
9400
|
-
# publisher_id: "PublisherId",
|
9401
|
-
# type_name_prefix: "TypeNamePrefix",
|
9402
|
-
# }
|
9403
|
-
#
|
9404
8499
|
# @!attribute [rw] category
|
9405
8500
|
# The category of extensions to return.
|
9406
8501
|
#
|
@@ -9684,49 +8779,6 @@ module Aws::CloudFormation
|
|
9684
8779
|
|
9685
8780
|
# The input for an UpdateStack action.
|
9686
8781
|
#
|
9687
|
-
# @note When making an API call, you may pass UpdateStackInput
|
9688
|
-
# data as a hash:
|
9689
|
-
#
|
9690
|
-
# {
|
9691
|
-
# stack_name: "StackName", # required
|
9692
|
-
# template_body: "TemplateBody",
|
9693
|
-
# template_url: "TemplateURL",
|
9694
|
-
# use_previous_template: false,
|
9695
|
-
# stack_policy_during_update_body: "StackPolicyDuringUpdateBody",
|
9696
|
-
# stack_policy_during_update_url: "StackPolicyDuringUpdateURL",
|
9697
|
-
# parameters: [
|
9698
|
-
# {
|
9699
|
-
# parameter_key: "ParameterKey",
|
9700
|
-
# parameter_value: "ParameterValue",
|
9701
|
-
# use_previous_value: false,
|
9702
|
-
# resolved_value: "ParameterValue",
|
9703
|
-
# },
|
9704
|
-
# ],
|
9705
|
-
# capabilities: ["CAPABILITY_IAM"], # accepts CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
|
9706
|
-
# resource_types: ["ResourceType"],
|
9707
|
-
# role_arn: "RoleARN",
|
9708
|
-
# rollback_configuration: {
|
9709
|
-
# rollback_triggers: [
|
9710
|
-
# {
|
9711
|
-
# arn: "Arn", # required
|
9712
|
-
# type: "Type", # required
|
9713
|
-
# },
|
9714
|
-
# ],
|
9715
|
-
# monitoring_time_in_minutes: 1,
|
9716
|
-
# },
|
9717
|
-
# stack_policy_body: "StackPolicyBody",
|
9718
|
-
# stack_policy_url: "StackPolicyURL",
|
9719
|
-
# notification_arns: ["NotificationARN"],
|
9720
|
-
# tags: [
|
9721
|
-
# {
|
9722
|
-
# key: "TagKey", # required
|
9723
|
-
# value: "TagValue", # required
|
9724
|
-
# },
|
9725
|
-
# ],
|
9726
|
-
# disable_rollback: false,
|
9727
|
-
# client_request_token: "ClientRequestToken",
|
9728
|
-
# }
|
9729
|
-
#
|
9730
8782
|
# @!attribute [rw] stack_name
|
9731
8783
|
# The name or unique stack ID of the stack to update.
|
9732
8784
|
# @return [String]
|
@@ -10023,39 +9075,6 @@ module Aws::CloudFormation
|
|
10023
9075
|
include Aws::Structure
|
10024
9076
|
end
|
10025
9077
|
|
10026
|
-
# @note When making an API call, you may pass UpdateStackInstancesInput
|
10027
|
-
# data as a hash:
|
10028
|
-
#
|
10029
|
-
# {
|
10030
|
-
# stack_set_name: "StackSetNameOrId", # required
|
10031
|
-
# accounts: ["Account"],
|
10032
|
-
# deployment_targets: {
|
10033
|
-
# accounts: ["Account"],
|
10034
|
-
# accounts_url: "AccountsUrl",
|
10035
|
-
# organizational_unit_ids: ["OrganizationalUnitId"],
|
10036
|
-
# account_filter_type: "NONE", # accepts NONE, INTERSECTION, DIFFERENCE, UNION
|
10037
|
-
# },
|
10038
|
-
# regions: ["Region"], # required
|
10039
|
-
# parameter_overrides: [
|
10040
|
-
# {
|
10041
|
-
# parameter_key: "ParameterKey",
|
10042
|
-
# parameter_value: "ParameterValue",
|
10043
|
-
# use_previous_value: false,
|
10044
|
-
# resolved_value: "ParameterValue",
|
10045
|
-
# },
|
10046
|
-
# ],
|
10047
|
-
# operation_preferences: {
|
10048
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
10049
|
-
# region_order: ["Region"],
|
10050
|
-
# failure_tolerance_count: 1,
|
10051
|
-
# failure_tolerance_percentage: 1,
|
10052
|
-
# max_concurrent_count: 1,
|
10053
|
-
# max_concurrent_percentage: 1,
|
10054
|
-
# },
|
10055
|
-
# operation_id: "ClientRequestToken",
|
10056
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
10057
|
-
# }
|
10058
|
-
#
|
10059
9078
|
# @!attribute [rw] stack_set_name
|
10060
9079
|
# The name or unique ID of the stack set associated with the stack
|
10061
9080
|
# instances.
|
@@ -10216,60 +9235,6 @@ module Aws::CloudFormation
|
|
10216
9235
|
include Aws::Structure
|
10217
9236
|
end
|
10218
9237
|
|
10219
|
-
# @note When making an API call, you may pass UpdateStackSetInput
|
10220
|
-
# data as a hash:
|
10221
|
-
#
|
10222
|
-
# {
|
10223
|
-
# stack_set_name: "StackSetName", # required
|
10224
|
-
# description: "Description",
|
10225
|
-
# template_body: "TemplateBody",
|
10226
|
-
# template_url: "TemplateURL",
|
10227
|
-
# use_previous_template: false,
|
10228
|
-
# parameters: [
|
10229
|
-
# {
|
10230
|
-
# parameter_key: "ParameterKey",
|
10231
|
-
# parameter_value: "ParameterValue",
|
10232
|
-
# use_previous_value: false,
|
10233
|
-
# resolved_value: "ParameterValue",
|
10234
|
-
# },
|
10235
|
-
# ],
|
10236
|
-
# capabilities: ["CAPABILITY_IAM"], # accepts CAPABILITY_IAM, CAPABILITY_NAMED_IAM, CAPABILITY_AUTO_EXPAND
|
10237
|
-
# tags: [
|
10238
|
-
# {
|
10239
|
-
# key: "TagKey", # required
|
10240
|
-
# value: "TagValue", # required
|
10241
|
-
# },
|
10242
|
-
# ],
|
10243
|
-
# operation_preferences: {
|
10244
|
-
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
10245
|
-
# region_order: ["Region"],
|
10246
|
-
# failure_tolerance_count: 1,
|
10247
|
-
# failure_tolerance_percentage: 1,
|
10248
|
-
# max_concurrent_count: 1,
|
10249
|
-
# max_concurrent_percentage: 1,
|
10250
|
-
# },
|
10251
|
-
# administration_role_arn: "RoleARN",
|
10252
|
-
# execution_role_name: "ExecutionRoleName",
|
10253
|
-
# deployment_targets: {
|
10254
|
-
# accounts: ["Account"],
|
10255
|
-
# accounts_url: "AccountsUrl",
|
10256
|
-
# organizational_unit_ids: ["OrganizationalUnitId"],
|
10257
|
-
# account_filter_type: "NONE", # accepts NONE, INTERSECTION, DIFFERENCE, UNION
|
10258
|
-
# },
|
10259
|
-
# permission_model: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, SELF_MANAGED
|
10260
|
-
# auto_deployment: {
|
10261
|
-
# enabled: false,
|
10262
|
-
# retain_stacks_on_account_removal: false,
|
10263
|
-
# },
|
10264
|
-
# operation_id: "ClientRequestToken",
|
10265
|
-
# accounts: ["Account"],
|
10266
|
-
# regions: ["Region"],
|
10267
|
-
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
10268
|
-
# managed_execution: {
|
10269
|
-
# active: false,
|
10270
|
-
# },
|
10271
|
-
# }
|
10272
|
-
#
|
10273
9238
|
# @!attribute [rw] stack_set_name
|
10274
9239
|
# The name or unique ID of the stack set that you want to update.
|
10275
9240
|
# @return [String]
|
@@ -10649,14 +9614,6 @@ module Aws::CloudFormation
|
|
10649
9614
|
include Aws::Structure
|
10650
9615
|
end
|
10651
9616
|
|
10652
|
-
# @note When making an API call, you may pass UpdateTerminationProtectionInput
|
10653
|
-
# data as a hash:
|
10654
|
-
#
|
10655
|
-
# {
|
10656
|
-
# enable_termination_protection: false, # required
|
10657
|
-
# stack_name: "StackNameOrId", # required
|
10658
|
-
# }
|
10659
|
-
#
|
10660
9617
|
# @!attribute [rw] enable_termination_protection
|
10661
9618
|
# Whether to enable termination protection on the specified stack.
|
10662
9619
|
# @return [Boolean]
|
@@ -10689,14 +9646,6 @@ module Aws::CloudFormation
|
|
10689
9646
|
|
10690
9647
|
# The input for ValidateTemplate action.
|
10691
9648
|
#
|
10692
|
-
# @note When making an API call, you may pass ValidateTemplateInput
|
10693
|
-
# data as a hash:
|
10694
|
-
#
|
10695
|
-
# {
|
10696
|
-
# template_body: "TemplateBody",
|
10697
|
-
# template_url: "TemplateURL",
|
10698
|
-
# }
|
10699
|
-
#
|
10700
9649
|
# @!attribute [rw] template_body
|
10701
9650
|
# Structure containing the template body with a minimum length of 1
|
10702
9651
|
# byte and a maximum length of 51,200 bytes. For more information, go
|