aws-sdk-cloudformation 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-cloudformation.rb +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +134 -86
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +12 -12
- data/lib/aws-sdk-cloudformation/stack.rb +23 -23
- data/lib/aws-sdk-cloudformation/stack_resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +98 -94
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5dd757901dfcbda60af4ea156616ff5aaa06ff8
|
4
|
+
data.tar.gz: a7338d5dd8f736e881c605d10087e3e8f36322f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 987fc62457f802f140438ea18183c986387e9e263d49ac87fb18a2d3bd1e18fc0369083d241325fad6108b61a75d3957ad0d8195961b4c4df49826474873ec7d
|
7
|
+
data.tar.gz: 95b34dd2c85ff934b27034e05f4ba077d45b59e63088d65bad988944fdd5b71955c922b6ba2d874f9894a9ab0d2b480ab2b025d003d71a93218001d46bd5d318
|
@@ -199,6 +199,49 @@ module Aws::CloudFormation
|
|
199
199
|
# When `true`, request parameters are validated before
|
200
200
|
# sending the request.
|
201
201
|
#
|
202
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
203
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
204
|
+
#
|
205
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
206
|
+
# seconds to wait when opening a HTTP session before rasing a
|
207
|
+
# `Timeout::Error`.
|
208
|
+
#
|
209
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
210
|
+
# number of seconds to wait for response data. This value can
|
211
|
+
# safely be set
|
212
|
+
# per-request on the session yeidled by {#session_for}.
|
213
|
+
#
|
214
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
215
|
+
# seconds a connection is allowed to sit idble before it is
|
216
|
+
# considered stale. Stale connections are closed and removed
|
217
|
+
# from the pool before making a request.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
220
|
+
# seconds to wait for a 100-continue response before sending the
|
221
|
+
# request body. This option has no effect unless the request has
|
222
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
223
|
+
# disables this behaviour. This value can safely be set per
|
224
|
+
# request on the session yeidled by {#session_for}.
|
225
|
+
#
|
226
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
227
|
+
# HTTP debug output will be sent to the `:logger`.
|
228
|
+
#
|
229
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
230
|
+
# SSL peer certificates are verified when establishing a
|
231
|
+
# connection.
|
232
|
+
#
|
233
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
234
|
+
# certificate authority bundle file that should be used when
|
235
|
+
# verifying peer certificates. If you do not pass
|
236
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
237
|
+
# will be used if available.
|
238
|
+
#
|
239
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
240
|
+
# directory that contains the unbundled SSL certificate
|
241
|
+
# authority files for verifying peer certificates. If you do
|
242
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
243
|
+
# system default will be used if available.
|
244
|
+
#
|
202
245
|
def initialize(*args)
|
203
246
|
super
|
204
247
|
end
|
@@ -259,7 +302,7 @@ module Aws::CloudFormation
|
|
259
302
|
#
|
260
303
|
#
|
261
304
|
#
|
262
|
-
# [1]:
|
305
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed
|
263
306
|
#
|
264
307
|
# @option params [required, String] :stack_name
|
265
308
|
# The name or the unique ID of the stack that you want to continue
|
@@ -328,8 +371,8 @@ module Aws::CloudFormation
|
|
328
371
|
#
|
329
372
|
#
|
330
373
|
#
|
331
|
-
# [1]:
|
332
|
-
# [2]:
|
374
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed
|
375
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html#nested-stacks
|
333
376
|
#
|
334
377
|
# @option params [String] :client_request_token
|
335
378
|
# A unique identifier for this `ContinueUpdateRollback` request. Specify
|
@@ -487,13 +530,13 @@ module Aws::CloudFormation
|
|
487
530
|
#
|
488
531
|
#
|
489
532
|
#
|
490
|
-
# [1]:
|
491
|
-
# [2]:
|
492
|
-
# [3]:
|
493
|
-
# [4]:
|
494
|
-
# [5]:
|
495
|
-
# [6]:
|
496
|
-
# [7]:
|
533
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
534
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
535
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
536
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
537
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
538
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
539
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
497
540
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
498
541
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
499
542
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -514,7 +557,7 @@ module Aws::CloudFormation
|
|
514
557
|
#
|
515
558
|
#
|
516
559
|
#
|
517
|
-
# [1]:
|
560
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
518
561
|
#
|
519
562
|
# @option params [String] :role_arn
|
520
563
|
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
@@ -580,7 +623,7 @@ module Aws::CloudFormation
|
|
580
623
|
#
|
581
624
|
#
|
582
625
|
#
|
583
|
-
# [1]:
|
626
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html#d0e11995
|
584
627
|
#
|
585
628
|
# @return [Types::CreateChangeSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
586
629
|
#
|
@@ -665,7 +708,7 @@ module Aws::CloudFormation
|
|
665
708
|
#
|
666
709
|
#
|
667
710
|
#
|
668
|
-
# [1]:
|
711
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
669
712
|
#
|
670
713
|
# @option params [String] :template_url
|
671
714
|
# Location of file containing the template body. The URL must point to a
|
@@ -678,7 +721,7 @@ module Aws::CloudFormation
|
|
678
721
|
#
|
679
722
|
#
|
680
723
|
#
|
681
|
-
# [1]:
|
724
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
682
725
|
#
|
683
726
|
# @option params [Array<Types::Parameter>] :parameters
|
684
727
|
# A list of `Parameter` structures that specify input parameters for the
|
@@ -686,7 +729,7 @@ module Aws::CloudFormation
|
|
686
729
|
#
|
687
730
|
#
|
688
731
|
#
|
689
|
-
# [1]:
|
732
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
690
733
|
#
|
691
734
|
# @option params [Boolean] :disable_rollback
|
692
735
|
# Set to `true` to disable rollback of the stack if stack creation
|
@@ -788,13 +831,13 @@ module Aws::CloudFormation
|
|
788
831
|
#
|
789
832
|
#
|
790
833
|
#
|
791
|
-
# [1]:
|
792
|
-
# [2]:
|
793
|
-
# [3]:
|
794
|
-
# [4]:
|
795
|
-
# [5]:
|
796
|
-
# [6]:
|
797
|
-
# [7]:
|
834
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
835
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
836
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
837
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
838
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
839
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
840
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
798
841
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
799
842
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
800
843
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -819,7 +862,7 @@ module Aws::CloudFormation
|
|
819
862
|
#
|
820
863
|
#
|
821
864
|
#
|
822
|
-
# [1]:
|
865
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
823
866
|
#
|
824
867
|
# @option params [String] :role_arn
|
825
868
|
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
@@ -851,7 +894,7 @@ module Aws::CloudFormation
|
|
851
894
|
#
|
852
895
|
#
|
853
896
|
#
|
854
|
-
# [1]:
|
897
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
855
898
|
#
|
856
899
|
# @option params [String] :stack_policy_url
|
857
900
|
# Location of a file containing the stack policy. The URL must point to
|
@@ -1014,7 +1057,7 @@ module Aws::CloudFormation
|
|
1014
1057
|
#
|
1015
1058
|
#
|
1016
1059
|
#
|
1017
|
-
# [1]:
|
1060
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html
|
1018
1061
|
#
|
1019
1062
|
# @option params [Types::StackSetOperationPreferences] :operation_preferences
|
1020
1063
|
# Preferences for how AWS CloudFormation performs this stack set
|
@@ -1105,7 +1148,7 @@ module Aws::CloudFormation
|
|
1105
1148
|
#
|
1106
1149
|
#
|
1107
1150
|
#
|
1108
|
-
# [1]:
|
1151
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1109
1152
|
#
|
1110
1153
|
# @option params [String] :template_url
|
1111
1154
|
# The location of the file that contains the template body. The URL must
|
@@ -1118,7 +1161,7 @@ module Aws::CloudFormation
|
|
1118
1161
|
#
|
1119
1162
|
#
|
1120
1163
|
#
|
1121
|
-
# [1]:
|
1164
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
1122
1165
|
#
|
1123
1166
|
# @option params [Array<Types::Parameter>] :parameters
|
1124
1167
|
# The input parameters for the stack set template.
|
@@ -1187,13 +1230,13 @@ module Aws::CloudFormation
|
|
1187
1230
|
#
|
1188
1231
|
#
|
1189
1232
|
#
|
1190
|
-
# [1]:
|
1191
|
-
# [2]:
|
1192
|
-
# [3]:
|
1193
|
-
# [4]:
|
1194
|
-
# [5]:
|
1195
|
-
# [6]:
|
1196
|
-
# [7]:
|
1233
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
1234
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
1235
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
1236
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
1237
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
1238
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
1239
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
1197
1240
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
1198
1241
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
1199
1242
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
@@ -1418,7 +1461,7 @@ module Aws::CloudFormation
|
|
1418
1461
|
#
|
1419
1462
|
#
|
1420
1463
|
#
|
1421
|
-
# [1]:
|
1464
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
1422
1465
|
#
|
1423
1466
|
# @option params [String] :operation_id
|
1424
1467
|
# The unique identifier for this stack set operation.
|
@@ -1498,7 +1541,13 @@ module Aws::CloudFormation
|
|
1498
1541
|
end
|
1499
1542
|
|
1500
1543
|
# Retrieves your account's AWS CloudFormation limits, such as the
|
1501
|
-
# maximum number of stacks that you can create in your account.
|
1544
|
+
# maximum number of stacks that you can create in your account. For more
|
1545
|
+
# information about account limits, see [AWS CloudFormation Limits][1]
|
1546
|
+
# in the *AWS CloudFormation User Guide*.
|
1547
|
+
#
|
1548
|
+
#
|
1549
|
+
#
|
1550
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html
|
1502
1551
|
#
|
1503
1552
|
# @option params [String] :next_token
|
1504
1553
|
# A string that identifies the next page of limits that you want to
|
@@ -1538,7 +1587,7 @@ module Aws::CloudFormation
|
|
1538
1587
|
#
|
1539
1588
|
#
|
1540
1589
|
#
|
1541
|
-
# [1]:
|
1590
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html
|
1542
1591
|
#
|
1543
1592
|
# @option params [required, String] :change_set_name
|
1544
1593
|
# The name or Amazon Resource Name (ARN) of the change set that you want
|
@@ -1651,7 +1700,7 @@ module Aws::CloudFormation
|
|
1651
1700
|
#
|
1652
1701
|
#
|
1653
1702
|
#
|
1654
|
-
# [1]:
|
1703
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
1655
1704
|
#
|
1656
1705
|
# @option params [required, String] :stack_drift_detection_id
|
1657
1706
|
# The ID of the drift detection results of this operation.
|
@@ -1707,7 +1756,7 @@ module Aws::CloudFormation
|
|
1707
1756
|
#
|
1708
1757
|
#
|
1709
1758
|
#
|
1710
|
-
# [1]:
|
1759
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html
|
1711
1760
|
#
|
1712
1761
|
# @option params [String] :stack_name
|
1713
1762
|
# The name or the unique stack ID that is associated with the stack,
|
@@ -1887,7 +1936,7 @@ module Aws::CloudFormation
|
|
1887
1936
|
#
|
1888
1937
|
#
|
1889
1938
|
#
|
1890
|
-
# [1]:
|
1939
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
1891
1940
|
#
|
1892
1941
|
# @option params [required, String] :stack_name
|
1893
1942
|
# The name of the stack for which you want drift information.
|
@@ -1989,7 +2038,7 @@ module Aws::CloudFormation
|
|
1989
2038
|
#
|
1990
2039
|
#
|
1991
2040
|
#
|
1992
|
-
# [1]:
|
2041
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
1993
2042
|
#
|
1994
2043
|
# @option params [String] :stack_name
|
1995
2044
|
# The name or the unique stack ID that is associated with the stack,
|
@@ -2271,8 +2320,8 @@ module Aws::CloudFormation
|
|
2271
2320
|
#
|
2272
2321
|
#
|
2273
2322
|
#
|
2274
|
-
# [1]:
|
2275
|
-
# [2]:
|
2323
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
2324
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
2276
2325
|
#
|
2277
2326
|
# @option params [required, String] :stack_name
|
2278
2327
|
# The name of the stack for which you want to detect drift.
|
@@ -2324,8 +2373,8 @@ module Aws::CloudFormation
|
|
2324
2373
|
#
|
2325
2374
|
#
|
2326
2375
|
#
|
2327
|
-
# [1]:
|
2328
|
-
# [2]:
|
2376
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
2377
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html
|
2329
2378
|
#
|
2330
2379
|
# @option params [required, String] :stack_name
|
2331
2380
|
# The name of the stack to which the resource belongs.
|
@@ -2387,7 +2436,7 @@ module Aws::CloudFormation
|
|
2387
2436
|
#
|
2388
2437
|
#
|
2389
2438
|
#
|
2390
|
-
# [1]:
|
2439
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2391
2440
|
#
|
2392
2441
|
# @option params [String] :template_url
|
2393
2442
|
# Location of file containing the template body. The URL must point to a
|
@@ -2399,7 +2448,7 @@ module Aws::CloudFormation
|
|
2399
2448
|
#
|
2400
2449
|
#
|
2401
2450
|
#
|
2402
|
-
# [1]:
|
2451
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2403
2452
|
#
|
2404
2453
|
# @option params [Array<Types::Parameter>] :parameters
|
2405
2454
|
# A list of `Parameter` structures that specify input parameters.
|
@@ -2601,7 +2650,7 @@ module Aws::CloudFormation
|
|
2601
2650
|
#
|
2602
2651
|
#
|
2603
2652
|
#
|
2604
|
-
# [1]:
|
2653
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2605
2654
|
#
|
2606
2655
|
# @option params [String] :template_url
|
2607
2656
|
# Location of file containing the template body. The URL must point to a
|
@@ -2614,7 +2663,7 @@ module Aws::CloudFormation
|
|
2614
2663
|
#
|
2615
2664
|
#
|
2616
2665
|
#
|
2617
|
-
# [1]:
|
2666
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
2618
2667
|
#
|
2619
2668
|
# @option params [String] :stack_name
|
2620
2669
|
# The name or the stack ID that is associated with the stack, which are
|
@@ -2739,8 +2788,8 @@ module Aws::CloudFormation
|
|
2739
2788
|
#
|
2740
2789
|
#
|
2741
2790
|
#
|
2742
|
-
# [1]:
|
2743
|
-
# [2]:
|
2791
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html
|
2792
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html
|
2744
2793
|
#
|
2745
2794
|
# @option params [String] :next_token
|
2746
2795
|
# A string (provided by the ListExports response output) that identifies
|
@@ -2784,7 +2833,7 @@ module Aws::CloudFormation
|
|
2784
2833
|
#
|
2785
2834
|
#
|
2786
2835
|
#
|
2787
|
-
# [1]:
|
2836
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html
|
2788
2837
|
#
|
2789
2838
|
# @option params [required, String] :export_name
|
2790
2839
|
# The name of the exported output value. AWS CloudFormation returns the
|
@@ -3171,7 +3220,7 @@ module Aws::CloudFormation
|
|
3171
3220
|
#
|
3172
3221
|
#
|
3173
3222
|
#
|
3174
|
-
# [1]:
|
3223
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html
|
3175
3224
|
#
|
3176
3225
|
# @option params [String] :stack_policy_url
|
3177
3226
|
# Location of a file containing the stack policy. The URL must point to
|
@@ -3287,7 +3336,7 @@ module Aws::CloudFormation
|
|
3287
3336
|
#
|
3288
3337
|
#
|
3289
3338
|
#
|
3290
|
-
# [1]:
|
3339
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html
|
3291
3340
|
#
|
3292
3341
|
# @option params [required, String] :stack_name
|
3293
3342
|
# The name or unique stack ID of the stack to update.
|
@@ -3303,7 +3352,7 @@ module Aws::CloudFormation
|
|
3303
3352
|
#
|
3304
3353
|
#
|
3305
3354
|
#
|
3306
|
-
# [1]:
|
3355
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
3307
3356
|
#
|
3308
3357
|
# @option params [String] :template_url
|
3309
3358
|
# Location of file containing the template body. The URL must point to a
|
@@ -3316,7 +3365,7 @@ module Aws::CloudFormation
|
|
3316
3365
|
#
|
3317
3366
|
#
|
3318
3367
|
#
|
3319
|
-
# [1]:
|
3368
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
3320
3369
|
#
|
3321
3370
|
# @option params [Boolean] :use_previous_template
|
3322
3371
|
# Reuse the existing template that is associated with the stack that you
|
@@ -3354,7 +3403,7 @@ module Aws::CloudFormation
|
|
3354
3403
|
#
|
3355
3404
|
#
|
3356
3405
|
#
|
3357
|
-
# [1]:
|
3406
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
|
3358
3407
|
#
|
3359
3408
|
# @option params [Array<String>] :capabilities
|
3360
3409
|
# In some cases, you must explicity acknowledge that your stack template
|
@@ -3434,13 +3483,13 @@ module Aws::CloudFormation
|
|
3434
3483
|
#
|
3435
3484
|
#
|
3436
3485
|
#
|
3437
|
-
# [1]:
|
3438
|
-
# [2]:
|
3439
|
-
# [3]:
|
3440
|
-
# [4]:
|
3441
|
-
# [5]:
|
3442
|
-
# [6]:
|
3443
|
-
# [7]:
|
3486
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
3487
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
3488
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
3489
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
3490
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
3491
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
3492
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
3444
3493
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
3445
3494
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
3446
3495
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html
|
@@ -3460,7 +3509,7 @@ module Aws::CloudFormation
|
|
3460
3509
|
#
|
3461
3510
|
#
|
3462
3511
|
#
|
3463
|
-
# [1]:
|
3512
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html
|
3464
3513
|
#
|
3465
3514
|
# @option params [String] :role_arn
|
3466
3515
|
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
@@ -3618,8 +3667,8 @@ module Aws::CloudFormation
|
|
3618
3667
|
#
|
3619
3668
|
#
|
3620
3669
|
#
|
3621
|
-
# [1]:
|
3622
|
-
# [2]:
|
3670
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html
|
3671
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html
|
3623
3672
|
#
|
3624
3673
|
# @option params [required, String] :stack_set_name
|
3625
3674
|
# The name or unique ID of the stack set associated with the stack
|
@@ -3679,7 +3728,7 @@ module Aws::CloudFormation
|
|
3679
3728
|
#
|
3680
3729
|
#
|
3681
3730
|
#
|
3682
|
-
# [1]:
|
3731
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html
|
3683
3732
|
#
|
3684
3733
|
# @option params [Types::StackSetOperationPreferences] :operation_preferences
|
3685
3734
|
# Preferences for how AWS CloudFormation performs this stack set
|
@@ -3766,7 +3815,7 @@ module Aws::CloudFormation
|
|
3766
3815
|
#
|
3767
3816
|
#
|
3768
3817
|
#
|
3769
|
-
# [1]:
|
3818
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
3770
3819
|
#
|
3771
3820
|
# @option params [String] :template_url
|
3772
3821
|
# The location of the file that contains the template body. The URL must
|
@@ -3779,7 +3828,7 @@ module Aws::CloudFormation
|
|
3779
3828
|
#
|
3780
3829
|
#
|
3781
3830
|
#
|
3782
|
-
# [1]:
|
3831
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
3783
3832
|
#
|
3784
3833
|
# @option params [Boolean] :use_previous_template
|
3785
3834
|
# Use the existing template that's associated with the stack set that
|
@@ -3853,13 +3902,13 @@ module Aws::CloudFormation
|
|
3853
3902
|
#
|
3854
3903
|
#
|
3855
3904
|
#
|
3856
|
-
# [1]:
|
3857
|
-
# [2]:
|
3858
|
-
# [3]:
|
3859
|
-
# [4]:
|
3860
|
-
# [5]:
|
3861
|
-
# [6]:
|
3862
|
-
# [7]:
|
3905
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html
|
3906
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
|
3907
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
|
3908
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
|
3909
|
+
# [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
|
3910
|
+
# [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html
|
3911
|
+
# [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html
|
3863
3912
|
# [8]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities
|
3864
3913
|
# [9]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html
|
3865
3914
|
# [10]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html
|
@@ -3907,14 +3956,13 @@ module Aws::CloudFormation
|
|
3907
3956
|
# Specify an IAM role only if you are using customized administrator
|
3908
3957
|
# roles to control which users or groups can manage specific stack sets
|
3909
3958
|
# within the same administrator account. For more information, see
|
3910
|
-
# [
|
3959
|
+
# [Granting Permissions for Stack Set Operations][1] in the *AWS
|
3911
3960
|
# CloudFormation User Guide*.
|
3912
3961
|
#
|
3913
|
-
# If you
|
3914
|
-
#
|
3915
|
-
# administrator role
|
3916
|
-
#
|
3917
|
-
# permissions to perform operations on the stack set.
|
3962
|
+
# If you specified a customized administrator role when you created the
|
3963
|
+
# stack set, you must specify a customized administrator role, even if
|
3964
|
+
# it is the same customized administrator role used with this stack set
|
3965
|
+
# previously.
|
3918
3966
|
#
|
3919
3967
|
#
|
3920
3968
|
#
|
@@ -4102,7 +4150,7 @@ module Aws::CloudFormation
|
|
4102
4150
|
#
|
4103
4151
|
#
|
4104
4152
|
#
|
4105
|
-
# [1]:
|
4153
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
4106
4154
|
#
|
4107
4155
|
# @option params [String] :template_url
|
4108
4156
|
# Location of file containing the template body. The URL must point to a
|
@@ -4115,7 +4163,7 @@ module Aws::CloudFormation
|
|
4115
4163
|
#
|
4116
4164
|
#
|
4117
4165
|
#
|
4118
|
-
# [1]:
|
4166
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
4119
4167
|
#
|
4120
4168
|
# @return [Types::ValidateTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4121
4169
|
#
|
@@ -4168,7 +4216,7 @@ module Aws::CloudFormation
|
|
4168
4216
|
params: params,
|
4169
4217
|
config: config)
|
4170
4218
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
4171
|
-
context[:gem_version] = '1.
|
4219
|
+
context[:gem_version] = '1.19.0'
|
4172
4220
|
Seahorse::Client::Request.new(handlers, context)
|
4173
4221
|
end
|
4174
4222
|
|