aws-sdk-cloudformation 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60b82b35bd370c2c60f0c4cdf18ed53912d62bf6
|
4
|
+
data.tar.gz: 213eafd786339f4f1d7caff2ade9a8058c93dfc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d4fa786595403b40603a7c90f41c4ef7dbd70dcf142342081adaacf8e20542b2e5f7ccf29b28acc4955ec534c47a337df8ac0c1801b92055b95554c9ba831a7
|
7
|
+
data.tar.gz: 99a59a6b26c5ad1d0fb8a3df871e696113cad90c57843894dd669ef0701a3203f6f049474c3acda2edc0fa72da2bc9188d37ac573aa9c3c299b6a704ffa5e432
|
@@ -1013,6 +1013,20 @@ module Aws::CloudFormation
|
|
1013
1013
|
# to tag resources. If you don't, the entire `CreateStackSet` action
|
1014
1014
|
# fails with an `access denied` error, and the stack set is not created.
|
1015
1015
|
#
|
1016
|
+
# @option params [String] :administration_role_arn
|
1017
|
+
# The Amazon Resource Number (ARN) of the IAM role to use to create this
|
1018
|
+
# stack set.
|
1019
|
+
#
|
1020
|
+
# Specify an IAM role only if you are using customized administrator
|
1021
|
+
# roles to control which users or groups can manage specific stack sets
|
1022
|
+
# within the same administrator account. For more information, see
|
1023
|
+
# [Define Permissions for Multiple Administrators][1] in the *AWS
|
1024
|
+
# CloudFormation User Guide*.
|
1025
|
+
#
|
1026
|
+
#
|
1027
|
+
#
|
1028
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
1029
|
+
#
|
1016
1030
|
# @option params [String] :client_request_token
|
1017
1031
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1018
1032
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1052,6 +1066,7 @@ module Aws::CloudFormation
|
|
1052
1066
|
# value: "TagValue", # required
|
1053
1067
|
# },
|
1054
1068
|
# ],
|
1069
|
+
# administration_role_arn: "RoleARN",
|
1055
1070
|
# client_request_token: "ClientRequestToken",
|
1056
1071
|
# })
|
1057
1072
|
#
|
@@ -1709,6 +1724,8 @@ module Aws::CloudFormation
|
|
1709
1724
|
# resp.stack_set.tags #=> Array
|
1710
1725
|
# resp.stack_set.tags[0].key #=> String
|
1711
1726
|
# resp.stack_set.tags[0].value #=> String
|
1727
|
+
# resp.stack_set.stack_set_arn #=> String
|
1728
|
+
# resp.stack_set.administration_role_arn #=> String
|
1712
1729
|
#
|
1713
1730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
|
1714
1731
|
#
|
@@ -1752,6 +1769,7 @@ module Aws::CloudFormation
|
|
1752
1769
|
# resp.stack_set_operation.operation_preferences.max_concurrent_count #=> Integer
|
1753
1770
|
# resp.stack_set_operation.operation_preferences.max_concurrent_percentage #=> Integer
|
1754
1771
|
# resp.stack_set_operation.retain_stacks #=> Boolean
|
1772
|
+
# resp.stack_set_operation.administration_role_arn #=> String
|
1755
1773
|
# resp.stack_set_operation.creation_timestamp #=> Time
|
1756
1774
|
# resp.stack_set_operation.end_timestamp #=> Time
|
1757
1775
|
#
|
@@ -3284,6 +3302,26 @@ module Aws::CloudFormation
|
|
3284
3302
|
# Preferences for how AWS CloudFormation performs this stack set
|
3285
3303
|
# operation.
|
3286
3304
|
#
|
3305
|
+
# @option params [String] :administration_role_arn
|
3306
|
+
# The Amazon Resource Number (ARN) of the IAM role to use to update this
|
3307
|
+
# stack set.
|
3308
|
+
#
|
3309
|
+
# Specify an IAM role only if you are using customized administrator
|
3310
|
+
# roles to control which users or groups can manage specific stack sets
|
3311
|
+
# within the same administrator account. For more information, see
|
3312
|
+
# [Define Permissions for Multiple Administrators][1] in the *AWS
|
3313
|
+
# CloudFormation User Guide*.
|
3314
|
+
#
|
3315
|
+
# If you specify a customized administrator role, AWS CloudFormation
|
3316
|
+
# uses that role to update the stack. If you do not specify a customized
|
3317
|
+
# administrator role, AWS CloudFormation performs the update using the
|
3318
|
+
# role previously associated with the stack set, so long as you have
|
3319
|
+
# permissions to perform operations on the stack set.
|
3320
|
+
#
|
3321
|
+
#
|
3322
|
+
#
|
3323
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
3324
|
+
#
|
3287
3325
|
# @option params [String] :operation_id
|
3288
3326
|
# The unique ID for this stack set operation.
|
3289
3327
|
#
|
@@ -3336,6 +3374,7 @@ module Aws::CloudFormation
|
|
3336
3374
|
# max_concurrent_count: 1,
|
3337
3375
|
# max_concurrent_percentage: 1,
|
3338
3376
|
# },
|
3377
|
+
# administration_role_arn: "RoleARN",
|
3339
3378
|
# operation_id: "ClientRequestToken",
|
3340
3379
|
# })
|
3341
3380
|
#
|
@@ -3478,7 +3517,7 @@ module Aws::CloudFormation
|
|
3478
3517
|
params: params,
|
3479
3518
|
config: config)
|
3480
3519
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
3481
|
-
context[:gem_version] = '1.
|
3520
|
+
context[:gem_version] = '1.4.0'
|
3482
3521
|
Seahorse::Client::Request.new(handlers, context)
|
3483
3522
|
end
|
3484
3523
|
|
@@ -208,6 +208,7 @@ module Aws::CloudFormation
|
|
208
208
|
StackResourceSummary = Shapes::StructureShape.new(name: 'StackResourceSummary')
|
209
209
|
StackResources = Shapes::ListShape.new(name: 'StackResources')
|
210
210
|
StackSet = Shapes::StructureShape.new(name: 'StackSet')
|
211
|
+
StackSetARN = Shapes::StringShape.new(name: 'StackSetARN')
|
211
212
|
StackSetId = Shapes::StringShape.new(name: 'StackSetId')
|
212
213
|
StackSetName = Shapes::StringShape.new(name: 'StackSetName')
|
213
214
|
StackSetNameOrId = Shapes::StringShape.new(name: 'StackSetNameOrId')
|
@@ -374,6 +375,7 @@ module Aws::CloudFormation
|
|
374
375
|
CreateStackSetInput.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
375
376
|
CreateStackSetInput.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
|
376
377
|
CreateStackSetInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
378
|
+
CreateStackSetInput.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
377
379
|
CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
378
380
|
CreateStackSetInput.struct_class = Types::CreateStackSetInput
|
379
381
|
|
@@ -807,6 +809,8 @@ module Aws::CloudFormation
|
|
807
809
|
StackSet.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
808
810
|
StackSet.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
|
809
811
|
StackSet.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
812
|
+
StackSet.add_member(:stack_set_arn, Shapes::ShapeRef.new(shape: StackSetARN, location_name: "StackSetARN"))
|
813
|
+
StackSet.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
810
814
|
StackSet.struct_class = Types::StackSet
|
811
815
|
|
812
816
|
StackSetOperation.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -815,6 +819,7 @@ module Aws::CloudFormation
|
|
815
819
|
StackSetOperation.add_member(:status, Shapes::ShapeRef.new(shape: StackSetOperationStatus, location_name: "Status"))
|
816
820
|
StackSetOperation.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
817
821
|
StackSetOperation.add_member(:retain_stacks, Shapes::ShapeRef.new(shape: RetainStacksNullable, location_name: "RetainStacks"))
|
822
|
+
StackSetOperation.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
818
823
|
StackSetOperation.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimestamp"))
|
819
824
|
StackSetOperation.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimestamp"))
|
820
825
|
StackSetOperation.struct_class = Types::StackSetOperation
|
@@ -935,6 +940,7 @@ module Aws::CloudFormation
|
|
935
940
|
UpdateStackSetInput.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
|
936
941
|
UpdateStackSetInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
937
942
|
UpdateStackSetInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
943
|
+
UpdateStackSetInput.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
938
944
|
UpdateStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
939
945
|
UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
|
940
946
|
|
@@ -1020,6 +1020,7 @@ module Aws::CloudFormation
|
|
1020
1020
|
# value: "TagValue", # required
|
1021
1021
|
# },
|
1022
1022
|
# ],
|
1023
|
+
# administration_role_arn: "RoleARN",
|
1023
1024
|
# client_request_token: "ClientRequestToken",
|
1024
1025
|
# }
|
1025
1026
|
#
|
@@ -1127,6 +1128,21 @@ module Aws::CloudFormation
|
|
1127
1128
|
# created.
|
1128
1129
|
# @return [Array<Types::Tag>]
|
1129
1130
|
#
|
1131
|
+
# @!attribute [rw] administration_role_arn
|
1132
|
+
# The Amazon Resource Number (ARN) of the IAM role to use to create
|
1133
|
+
# this stack set.
|
1134
|
+
#
|
1135
|
+
# Specify an IAM role only if you are using customized administrator
|
1136
|
+
# roles to control which users or groups can manage specific stack
|
1137
|
+
# sets within the same administrator account. For more information,
|
1138
|
+
# see [Define Permissions for Multiple Administrators][1] in the *AWS
|
1139
|
+
# CloudFormation User Guide*.
|
1140
|
+
#
|
1141
|
+
#
|
1142
|
+
#
|
1143
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
1144
|
+
# @return [String]
|
1145
|
+
#
|
1130
1146
|
# @!attribute [rw] client_request_token
|
1131
1147
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1132
1148
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1151,6 +1167,7 @@ module Aws::CloudFormation
|
|
1151
1167
|
:parameters,
|
1152
1168
|
:capabilities,
|
1153
1169
|
:tags,
|
1170
|
+
:administration_role_arn,
|
1154
1171
|
:client_request_token)
|
1155
1172
|
include Aws::Structure
|
1156
1173
|
end
|
@@ -3125,29 +3142,12 @@ module Aws::CloudFormation
|
|
3125
3142
|
# Rollback triggers enable you to have AWS CloudFormation monitor the
|
3126
3143
|
# state of your application during stack creation and updating, and to
|
3127
3144
|
# roll back that operation if the application breaches the threshold of
|
3128
|
-
# any of the alarms you've specified. For
|
3129
|
-
#
|
3130
|
-
# monitor. CloudFormation monitors the specified alarms during the stack
|
3131
|
-
# create or update operation, and for the specified amount of time after
|
3132
|
-
# all resources have been deployed. If any of the alarms goes to ALERT
|
3133
|
-
# state during the stack operation or the monitoring period,
|
3134
|
-
# CloudFormation rolls back the entire stack operation. If the
|
3135
|
-
# monitoring period expires without any alarms going to ALERT state,
|
3136
|
-
# CloudFormation proceeds to dispose of old resources as usual.
|
3137
|
-
#
|
3138
|
-
# By default, CloudFormation only rolls back stack operations if an
|
3139
|
-
# alarm goes to ALERT state, not INSUFFICIENT\_DATA state. To have
|
3140
|
-
# CloudFormation roll back the stack operation if an alarm goes to
|
3141
|
-
# INSUFFICIENT\_DATA state as well, edit the CloudWatch alarm to treat
|
3142
|
-
# missing data as `breaching`. For more information, see [Configuring
|
3143
|
-
# How CloudWatch Alarms Treats Missing Data][1].
|
3144
|
-
#
|
3145
|
-
# AWS CloudFormation does not monitor rollback triggers when it rolls
|
3146
|
-
# back a stack during an update operation.
|
3145
|
+
# any of the alarms you've specified. For more information, see
|
3146
|
+
# [Monitor and Roll Back Stack Operations][1].
|
3147
3147
|
#
|
3148
3148
|
#
|
3149
3149
|
#
|
3150
|
-
# [1]: http://docs.aws.amazon.com/
|
3150
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-rollback-triggers.html
|
3151
3151
|
#
|
3152
3152
|
# @note When making an API call, you may pass RollbackConfiguration
|
3153
3153
|
# data as a hash:
|
@@ -3171,37 +3171,34 @@ module Aws::CloudFormation
|
|
3171
3171
|
# triggers for this parameter, those triggers replace any list of
|
3172
3172
|
# triggers previously specified for the stack. This means:
|
3173
3173
|
#
|
3174
|
-
# *
|
3175
|
-
#
|
3174
|
+
# * To use the rollback triggers previously specified for this stack,
|
3175
|
+
# if any, don't specify this parameter.
|
3176
3176
|
#
|
3177
|
-
# *
|
3178
|
-
#
|
3179
|
-
#
|
3180
|
-
#
|
3181
|
-
#
|
3177
|
+
# * To specify new or updated rollback triggers, you must specify
|
3178
|
+
# *all* the triggers that you want used for this stack, even
|
3179
|
+
# triggers you've specifed before (for example, when creating the
|
3180
|
+
# stack or during a previous stack update). Any triggers that you
|
3181
|
+
# don't include in the updated list of triggers are no longer
|
3182
3182
|
# applied to the stack.
|
3183
3183
|
#
|
3184
|
-
# *
|
3185
|
-
#
|
3184
|
+
# * To remove all currently specified triggers, specify an empty list
|
3185
|
+
# for this parameter.
|
3186
3186
|
#
|
3187
|
-
# If a specified
|
3188
|
-
#
|
3187
|
+
# If a specified trigger is missing, the entire stack operation fails
|
3188
|
+
# and is rolled back.
|
3189
3189
|
# @return [Array<Types::RollbackTrigger>]
|
3190
3190
|
#
|
3191
3191
|
# @!attribute [rw] monitoring_time_in_minutes
|
3192
3192
|
# The amount of time, in minutes, during which CloudFormation should
|
3193
3193
|
# monitor all the rollback triggers after the stack creation or update
|
3194
|
-
# operation deploys all necessary resources.
|
3195
|
-
#
|
3196
|
-
#
|
3197
|
-
# update operations, if the monitoring period expires without any
|
3198
|
-
# alarms going to ALERT state CloudFormation proceeds to dispose of
|
3199
|
-
# old resources as usual.
|
3194
|
+
# operation deploys all necessary resources.
|
3195
|
+
#
|
3196
|
+
# The default is 0 minutes.
|
3200
3197
|
#
|
3201
3198
|
# If you specify a monitoring period but do not specify any rollback
|
3202
3199
|
# triggers, CloudFormation still waits the specified period of time
|
3203
|
-
# before cleaning up old resources
|
3204
|
-
# this monitoring period to perform any manual stack validation
|
3200
|
+
# before cleaning up old resources after update operations. You can
|
3201
|
+
# use this monitoring period to perform any manual stack validation
|
3205
3202
|
# desired, and manually cancel the stack creation or update (using
|
3206
3203
|
# [CancelUpdateStack][1], for example) as necessary.
|
3207
3204
|
#
|
@@ -3224,7 +3221,7 @@ module Aws::CloudFormation
|
|
3224
3221
|
end
|
3225
3222
|
|
3226
3223
|
# A rollback trigger AWS CloudFormation monitors during creation and
|
3227
|
-
# updating of stacks. If any of the alarms you specify goes to
|
3224
|
+
# updating of stacks. If any of the alarms you specify goes to ALARM
|
3228
3225
|
# state during the stack operation or within the specified monitoring
|
3229
3226
|
# period afterwards, CloudFormation rolls back the entire stack
|
3230
3227
|
# operation.
|
@@ -3239,6 +3236,9 @@ module Aws::CloudFormation
|
|
3239
3236
|
#
|
3240
3237
|
# @!attribute [rw] arn
|
3241
3238
|
# The Amazon Resource Name (ARN) of the rollback trigger.
|
3239
|
+
#
|
3240
|
+
# If a specified trigger is missing, the entire stack operation fails
|
3241
|
+
# and is rolled back.
|
3242
3242
|
# @return [String]
|
3243
3243
|
#
|
3244
3244
|
# @!attribute [rw] type
|
@@ -3942,6 +3942,24 @@ module Aws::CloudFormation
|
|
3942
3942
|
# maximum number of 50 tags can be specified.
|
3943
3943
|
# @return [Array<Types::Tag>]
|
3944
3944
|
#
|
3945
|
+
# @!attribute [rw] stack_set_arn
|
3946
|
+
# The Amazon Resource Number (ARN) of the stack set.
|
3947
|
+
# @return [String]
|
3948
|
+
#
|
3949
|
+
# @!attribute [rw] administration_role_arn
|
3950
|
+
# The Amazon Resource Number (ARN) of the IAM role used to create or
|
3951
|
+
# update the stack set.
|
3952
|
+
#
|
3953
|
+
# Use customized administrator roles to control which users or groups
|
3954
|
+
# can manage specific stack sets within the same administrator
|
3955
|
+
# account. For more information, see [Define Permissions for Multiple
|
3956
|
+
# Administrators][1] in the *AWS CloudFormation User Guide*.
|
3957
|
+
#
|
3958
|
+
#
|
3959
|
+
#
|
3960
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
3961
|
+
# @return [String]
|
3962
|
+
#
|
3945
3963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
3946
3964
|
#
|
3947
3965
|
class StackSet < Struct.new(
|
@@ -3952,7 +3970,9 @@ module Aws::CloudFormation
|
|
3952
3970
|
:template_body,
|
3953
3971
|
:parameters,
|
3954
3972
|
:capabilities,
|
3955
|
-
:tags
|
3973
|
+
:tags,
|
3974
|
+
:stack_set_arn,
|
3975
|
+
:administration_role_arn)
|
3956
3976
|
include Aws::Structure
|
3957
3977
|
end
|
3958
3978
|
|
@@ -4010,6 +4030,20 @@ module Aws::CloudFormation
|
|
4010
4030
|
# or add an existing, saved stack to a new stack set.
|
4011
4031
|
# @return [Boolean]
|
4012
4032
|
#
|
4033
|
+
# @!attribute [rw] administration_role_arn
|
4034
|
+
# The Amazon Resource Number (ARN) of the IAM role used to perform
|
4035
|
+
# this stack set operation.
|
4036
|
+
#
|
4037
|
+
# Use customized administrator roles to control which users or groups
|
4038
|
+
# can manage specific stack sets within the same administrator
|
4039
|
+
# account. For more information, see [Define Permissions for Multiple
|
4040
|
+
# Administrators][1] in the *AWS CloudFormation User Guide*.
|
4041
|
+
#
|
4042
|
+
#
|
4043
|
+
#
|
4044
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
4045
|
+
# @return [String]
|
4046
|
+
#
|
4013
4047
|
# @!attribute [rw] creation_timestamp
|
4014
4048
|
# The time at which the operation was initiated. Note that the
|
4015
4049
|
# creation times for the stack set operation might differ from the
|
@@ -4035,6 +4069,7 @@ module Aws::CloudFormation
|
|
4035
4069
|
:status,
|
4036
4070
|
:operation_preferences,
|
4037
4071
|
:retain_stacks,
|
4072
|
+
:administration_role_arn,
|
4038
4073
|
:creation_timestamp,
|
4039
4074
|
:end_timestamp)
|
4040
4075
|
include Aws::Structure
|
@@ -4913,6 +4948,7 @@ module Aws::CloudFormation
|
|
4913
4948
|
# max_concurrent_count: 1,
|
4914
4949
|
# max_concurrent_percentage: 1,
|
4915
4950
|
# },
|
4951
|
+
# administration_role_arn: "RoleARN",
|
4916
4952
|
# operation_id: "ClientRequestToken",
|
4917
4953
|
# }
|
4918
4954
|
#
|
@@ -5050,6 +5086,27 @@ module Aws::CloudFormation
|
|
5050
5086
|
# operation.
|
5051
5087
|
# @return [Types::StackSetOperationPreferences]
|
5052
5088
|
#
|
5089
|
+
# @!attribute [rw] administration_role_arn
|
5090
|
+
# The Amazon Resource Number (ARN) of the IAM role to use to update
|
5091
|
+
# this stack set.
|
5092
|
+
#
|
5093
|
+
# Specify an IAM role only if you are using customized administrator
|
5094
|
+
# roles to control which users or groups can manage specific stack
|
5095
|
+
# sets within the same administrator account. For more information,
|
5096
|
+
# see [Define Permissions for Multiple Administrators][1] in the *AWS
|
5097
|
+
# CloudFormation User Guide*.
|
5098
|
+
#
|
5099
|
+
# If you specify a customized administrator role, AWS CloudFormation
|
5100
|
+
# uses that role to update the stack. If you do not specify a
|
5101
|
+
# customized administrator role, AWS CloudFormation performs the
|
5102
|
+
# update using the role previously associated with the stack set, so
|
5103
|
+
# long as you have permissions to perform operations on the stack set.
|
5104
|
+
#
|
5105
|
+
#
|
5106
|
+
#
|
5107
|
+
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
5108
|
+
# @return [String]
|
5109
|
+
#
|
5053
5110
|
# @!attribute [rw] operation_id
|
5054
5111
|
# The unique ID for this stack set operation.
|
5055
5112
|
#
|
@@ -5081,6 +5138,7 @@ module Aws::CloudFormation
|
|
5081
5138
|
:capabilities,
|
5082
5139
|
:tags,
|
5083
5140
|
:operation_preferences,
|
5141
|
+
:administration_role_arn,
|
5084
5142
|
:operation_id)
|
5085
5143
|
include Aws::Structure
|
5086
5144
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
version: '0'
|
81
81
|
requirements: []
|
82
82
|
rubyforge_project:
|
83
|
-
rubygems_version: 2.5.
|
83
|
+
rubygems_version: 2.5.2.2
|
84
84
|
signing_key:
|
85
85
|
specification_version: 4
|
86
86
|
summary: AWS SDK for Ruby - AWS CloudFormation
|