aws-sdk-cloudformation 1.4.0 → 1.5.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: d61c6b15e2d8b7fbc07fea79d132a684772d8b07
|
4
|
+
data.tar.gz: a8dea38889fa3c74b35c0d5a1214a6add99f7b94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d65ac5b5b78dc357316f15665724011b37db374f36bdb6202f8a1d5b107f45a322028c37e155b66fc4dcafbbfe40a6e91ed3b42e63cb2ebfbaa5f3e57e04c9e
|
7
|
+
data.tar.gz: 0e4eeb802414a646cf2f1aebcb1c9baa0871a8e23a24e820f6f4d4a44240f536c934c6bfacfb2dc997c5dd3a9e0304415091fd3ecae3adf3a873989c0e79e1c7
|
@@ -1020,13 +1020,23 @@ module Aws::CloudFormation
|
|
1020
1020
|
# Specify an IAM role only if you are using customized administrator
|
1021
1021
|
# roles to control which users or groups can manage specific stack sets
|
1022
1022
|
# within the same administrator account. For more information, see
|
1023
|
-
# [
|
1024
|
-
# CloudFormation User Guide*.
|
1023
|
+
# [Prerequisites: Granting Permissions for Stack Set Operations][1] in
|
1024
|
+
# the *AWS CloudFormation User Guide*.
|
1025
1025
|
#
|
1026
1026
|
#
|
1027
1027
|
#
|
1028
1028
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
1029
1029
|
#
|
1030
|
+
# @option params [String] :execution_role_name
|
1031
|
+
# The name of the IAM execution role to use to create the stack set. If
|
1032
|
+
# you do not specify an execution role, AWS CloudFormation uses the
|
1033
|
+
# `AWSCloudFormationStackSetExecutionRole` role for the stack set
|
1034
|
+
# operation.
|
1035
|
+
#
|
1036
|
+
# Specify an IAM role only if you are using customized execution roles
|
1037
|
+
# to control which stack resources users and groups can include in their
|
1038
|
+
# stack sets.
|
1039
|
+
#
|
1030
1040
|
# @option params [String] :client_request_token
|
1031
1041
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1032
1042
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1067,6 +1077,7 @@ module Aws::CloudFormation
|
|
1067
1077
|
# },
|
1068
1078
|
# ],
|
1069
1079
|
# administration_role_arn: "RoleARN",
|
1080
|
+
# execution_role_name: "ExecutionRoleName",
|
1070
1081
|
# client_request_token: "ClientRequestToken",
|
1071
1082
|
# })
|
1072
1083
|
#
|
@@ -1726,6 +1737,7 @@ module Aws::CloudFormation
|
|
1726
1737
|
# resp.stack_set.tags[0].value #=> String
|
1727
1738
|
# resp.stack_set.stack_set_arn #=> String
|
1728
1739
|
# resp.stack_set.administration_role_arn #=> String
|
1740
|
+
# resp.stack_set.execution_role_name #=> String
|
1729
1741
|
#
|
1730
1742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
|
1731
1743
|
#
|
@@ -1770,6 +1782,7 @@ module Aws::CloudFormation
|
|
1770
1782
|
# resp.stack_set_operation.operation_preferences.max_concurrent_percentage #=> Integer
|
1771
1783
|
# resp.stack_set_operation.retain_stacks #=> Boolean
|
1772
1784
|
# resp.stack_set_operation.administration_role_arn #=> String
|
1785
|
+
# resp.stack_set_operation.execution_role_name #=> String
|
1773
1786
|
# resp.stack_set_operation.creation_timestamp #=> Time
|
1774
1787
|
# resp.stack_set_operation.end_timestamp #=> Time
|
1775
1788
|
#
|
@@ -3143,7 +3156,7 @@ module Aws::CloudFormation
|
|
3143
3156
|
# @example Request syntax with placeholder values
|
3144
3157
|
#
|
3145
3158
|
# resp = client.update_stack_instances({
|
3146
|
-
# stack_set_name: "
|
3159
|
+
# stack_set_name: "StackSetNameOrId", # required
|
3147
3160
|
# accounts: ["Account"], # required
|
3148
3161
|
# regions: ["Region"], # required
|
3149
3162
|
# parameter_overrides: [
|
@@ -3177,7 +3190,8 @@ module Aws::CloudFormation
|
|
3177
3190
|
req.send_request(options)
|
3178
3191
|
end
|
3179
3192
|
|
3180
|
-
# Updates the stack set and
|
3193
|
+
# Updates the stack set, and associated stack instances in the specified
|
3194
|
+
# accounts and regions.
|
3181
3195
|
#
|
3182
3196
|
# Even if the stack set operation created by updating the stack set
|
3183
3197
|
# fails (completely or partially, below or above a specified failure
|
@@ -3322,6 +3336,22 @@ module Aws::CloudFormation
|
|
3322
3336
|
#
|
3323
3337
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
3324
3338
|
#
|
3339
|
+
# @option params [String] :execution_role_name
|
3340
|
+
# The name of the IAM execution role to use to update the stack set. If
|
3341
|
+
# you do not specify an execution role, AWS CloudFormation uses the
|
3342
|
+
# `AWSCloudFormationStackSetExecutionRole` role for the stack set
|
3343
|
+
# operation.
|
3344
|
+
#
|
3345
|
+
# Specify an IAM role only if you are using customized execution roles
|
3346
|
+
# to control which stack resources users and groups can include in their
|
3347
|
+
# stack sets.
|
3348
|
+
#
|
3349
|
+
# If you specify a customized execution role, AWS CloudFormation uses
|
3350
|
+
# that role to update the stack. If you do not specify a customized
|
3351
|
+
# execution role, AWS CloudFormation performs the update using the role
|
3352
|
+
# previously associated with the stack set, so long as you have
|
3353
|
+
# permissions to perform operations on the stack set.
|
3354
|
+
#
|
3325
3355
|
# @option params [String] :operation_id
|
3326
3356
|
# The unique ID for this stack set operation.
|
3327
3357
|
#
|
@@ -3340,6 +3370,42 @@ module Aws::CloudFormation
|
|
3340
3370
|
# **A suitable default value is auto-generated.** You should normally
|
3341
3371
|
# not need to pass this option.**
|
3342
3372
|
#
|
3373
|
+
# @option params [Array<String>] :accounts
|
3374
|
+
# The accounts in which to update associated stack instances. If you
|
3375
|
+
# specify accounts, you must also specify the regions in which to update
|
3376
|
+
# stack set instances.
|
3377
|
+
#
|
3378
|
+
# To update *all* the stack instances associated with this stack set, do
|
3379
|
+
# not specify the `Accounts` or `Regions` properties.
|
3380
|
+
#
|
3381
|
+
# If the stack set update includes changes to the template (that is, if
|
3382
|
+
# the `TemplateBody` or `TemplateURL` properties are specified), or the
|
3383
|
+
# `Parameters` property, AWS CloudFormation marks all stack instances
|
3384
|
+
# with a status of `OUTDATED` prior to updating the stack instances in
|
3385
|
+
# the specified accounts and regions. If the stack set update does not
|
3386
|
+
# include changes to the template or parameters, AWS CloudFormation
|
3387
|
+
# updates the stack instances in the specified accounts and regions,
|
3388
|
+
# while leaving all other stack instances with their existing stack
|
3389
|
+
# instance status.
|
3390
|
+
#
|
3391
|
+
# @option params [Array<String>] :regions
|
3392
|
+
# The regions in which to update associated stack instances. If you
|
3393
|
+
# specify regions, you must also specify accounts in which to update
|
3394
|
+
# stack set instances.
|
3395
|
+
#
|
3396
|
+
# To update *all* the stack instances associated with this stack set, do
|
3397
|
+
# not specify the `Accounts` or `Regions` properties.
|
3398
|
+
#
|
3399
|
+
# If the stack set update includes changes to the template (that is, if
|
3400
|
+
# the `TemplateBody` or `TemplateURL` properties are specified), or the
|
3401
|
+
# `Parameters` property, AWS CloudFormation marks all stack instances
|
3402
|
+
# with a status of `OUTDATED` prior to updating the stack instances in
|
3403
|
+
# the specified accounts and regions. If the stack set update does not
|
3404
|
+
# include changes to the template or parameters, AWS CloudFormation
|
3405
|
+
# updates the stack instances in the specified accounts and regions,
|
3406
|
+
# while leaving all other stack instances with their existing stack
|
3407
|
+
# instance status.
|
3408
|
+
#
|
3343
3409
|
# @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3344
3410
|
#
|
3345
3411
|
# * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
|
@@ -3375,7 +3441,10 @@ module Aws::CloudFormation
|
|
3375
3441
|
# max_concurrent_percentage: 1,
|
3376
3442
|
# },
|
3377
3443
|
# administration_role_arn: "RoleARN",
|
3444
|
+
# execution_role_name: "ExecutionRoleName",
|
3378
3445
|
# operation_id: "ClientRequestToken",
|
3446
|
+
# accounts: ["Account"],
|
3447
|
+
# regions: ["Region"],
|
3379
3448
|
# })
|
3380
3449
|
#
|
3381
3450
|
# @example Response structure
|
@@ -3517,7 +3586,7 @@ module Aws::CloudFormation
|
|
3517
3586
|
params: params,
|
3518
3587
|
config: config)
|
3519
3588
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
3520
|
-
context[:gem_version] = '1.
|
3589
|
+
context[:gem_version] = '1.5.0'
|
3521
3590
|
Seahorse::Client::Request.new(handlers, context)
|
3522
3591
|
end
|
3523
3592
|
|
@@ -90,6 +90,7 @@ module Aws::CloudFormation
|
|
90
90
|
EventId = Shapes::StringShape.new(name: 'EventId')
|
91
91
|
ExecuteChangeSetInput = Shapes::StructureShape.new(name: 'ExecuteChangeSetInput')
|
92
92
|
ExecuteChangeSetOutput = Shapes::StructureShape.new(name: 'ExecuteChangeSetOutput')
|
93
|
+
ExecutionRoleName = Shapes::StringShape.new(name: 'ExecutionRoleName')
|
93
94
|
ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
|
94
95
|
Export = Shapes::StructureShape.new(name: 'Export')
|
95
96
|
ExportName = Shapes::StringShape.new(name: 'ExportName')
|
@@ -376,6 +377,7 @@ module Aws::CloudFormation
|
|
376
377
|
CreateStackSetInput.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
|
377
378
|
CreateStackSetInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
378
379
|
CreateStackSetInput.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
380
|
+
CreateStackSetInput.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName"))
|
379
381
|
CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
380
382
|
CreateStackSetInput.struct_class = Types::CreateStackSetInput
|
381
383
|
|
@@ -811,6 +813,7 @@ module Aws::CloudFormation
|
|
811
813
|
StackSet.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
812
814
|
StackSet.add_member(:stack_set_arn, Shapes::ShapeRef.new(shape: StackSetARN, location_name: "StackSetARN"))
|
813
815
|
StackSet.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
816
|
+
StackSet.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName"))
|
814
817
|
StackSet.struct_class = Types::StackSet
|
815
818
|
|
816
819
|
StackSetOperation.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -820,6 +823,7 @@ module Aws::CloudFormation
|
|
820
823
|
StackSetOperation.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
821
824
|
StackSetOperation.add_member(:retain_stacks, Shapes::ShapeRef.new(shape: RetainStacksNullable, location_name: "RetainStacks"))
|
822
825
|
StackSetOperation.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
826
|
+
StackSetOperation.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName"))
|
823
827
|
StackSetOperation.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimestamp"))
|
824
828
|
StackSetOperation.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EndTimestamp"))
|
825
829
|
StackSetOperation.struct_class = Types::StackSetOperation
|
@@ -917,7 +921,7 @@ module Aws::CloudFormation
|
|
917
921
|
UpdateStackInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
|
918
922
|
UpdateStackInput.struct_class = Types::UpdateStackInput
|
919
923
|
|
920
|
-
UpdateStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape:
|
924
|
+
UpdateStackInstancesInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
|
921
925
|
UpdateStackInstancesInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, required: true, location_name: "Accounts"))
|
922
926
|
UpdateStackInstancesInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, required: true, location_name: "Regions"))
|
923
927
|
UpdateStackInstancesInput.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: Parameters, location_name: "ParameterOverrides"))
|
@@ -941,7 +945,10 @@ module Aws::CloudFormation
|
|
941
945
|
UpdateStackSetInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
942
946
|
UpdateStackSetInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
943
947
|
UpdateStackSetInput.add_member(:administration_role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "AdministrationRoleARN"))
|
948
|
+
UpdateStackSetInput.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName"))
|
944
949
|
UpdateStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
950
|
+
UpdateStackSetInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
|
951
|
+
UpdateStackSetInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
|
945
952
|
UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
|
946
953
|
|
947
954
|
UpdateStackSetOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -1378,6 +1385,7 @@ module Aws::CloudFormation
|
|
1378
1385
|
o.errors << Shapes::ShapeRef.new(shape: OperationIdAlreadyExistsException)
|
1379
1386
|
o.errors << Shapes::ShapeRef.new(shape: StaleRequestException)
|
1380
1387
|
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1388
|
+
o.errors << Shapes::ShapeRef.new(shape: StackInstanceNotFoundException)
|
1381
1389
|
end)
|
1382
1390
|
|
1383
1391
|
api.add_operation(:update_termination_protection, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1021,6 +1021,7 @@ module Aws::CloudFormation
|
|
1021
1021
|
# },
|
1022
1022
|
# ],
|
1023
1023
|
# administration_role_arn: "RoleARN",
|
1024
|
+
# execution_role_name: "ExecutionRoleName",
|
1024
1025
|
# client_request_token: "ClientRequestToken",
|
1025
1026
|
# }
|
1026
1027
|
#
|
@@ -1135,14 +1136,25 @@ module Aws::CloudFormation
|
|
1135
1136
|
# Specify an IAM role only if you are using customized administrator
|
1136
1137
|
# roles to control which users or groups can manage specific stack
|
1137
1138
|
# sets within the same administrator account. For more information,
|
1138
|
-
# see [
|
1139
|
-
# CloudFormation User Guide*.
|
1139
|
+
# see [Prerequisites: Granting Permissions for Stack Set
|
1140
|
+
# Operations][1] in the *AWS CloudFormation User Guide*.
|
1140
1141
|
#
|
1141
1142
|
#
|
1142
1143
|
#
|
1143
1144
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
1144
1145
|
# @return [String]
|
1145
1146
|
#
|
1147
|
+
# @!attribute [rw] execution_role_name
|
1148
|
+
# The name of the IAM execution role to use to create the stack set.
|
1149
|
+
# If you do not specify an execution role, AWS CloudFormation uses the
|
1150
|
+
# `AWSCloudFormationStackSetExecutionRole` role for the stack set
|
1151
|
+
# operation.
|
1152
|
+
#
|
1153
|
+
# Specify an IAM role only if you are using customized execution roles
|
1154
|
+
# to control which stack resources users and groups can include in
|
1155
|
+
# their stack sets.
|
1156
|
+
# @return [String]
|
1157
|
+
#
|
1146
1158
|
# @!attribute [rw] client_request_token
|
1147
1159
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1148
1160
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1168,6 +1180,7 @@ module Aws::CloudFormation
|
|
1168
1180
|
:capabilities,
|
1169
1181
|
:tags,
|
1170
1182
|
:administration_role_arn,
|
1183
|
+
:execution_role_name,
|
1171
1184
|
:client_request_token)
|
1172
1185
|
include Aws::Structure
|
1173
1186
|
end
|
@@ -3952,14 +3965,23 @@ module Aws::CloudFormation
|
|
3952
3965
|
#
|
3953
3966
|
# Use customized administrator roles to control which users or groups
|
3954
3967
|
# can manage specific stack sets within the same administrator
|
3955
|
-
# account. For more information, see [
|
3956
|
-
#
|
3968
|
+
# account. For more information, see [Prerequisites: Granting
|
3969
|
+
# Permissions for Stack Set Operations][1] in the *AWS CloudFormation
|
3970
|
+
# User Guide*.
|
3957
3971
|
#
|
3958
3972
|
#
|
3959
3973
|
#
|
3960
3974
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
3961
3975
|
# @return [String]
|
3962
3976
|
#
|
3977
|
+
# @!attribute [rw] execution_role_name
|
3978
|
+
# The name of the IAM execution role used to create or update the
|
3979
|
+
# stack set.
|
3980
|
+
#
|
3981
|
+
# Use customized execution roles to control which stack resources
|
3982
|
+
# users and groups can include in their stack sets.
|
3983
|
+
# @return [String]
|
3984
|
+
#
|
3963
3985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
|
3964
3986
|
#
|
3965
3987
|
class StackSet < Struct.new(
|
@@ -3972,7 +3994,8 @@ module Aws::CloudFormation
|
|
3972
3994
|
:capabilities,
|
3973
3995
|
:tags,
|
3974
3996
|
:stack_set_arn,
|
3975
|
-
:administration_role_arn
|
3997
|
+
:administration_role_arn,
|
3998
|
+
:execution_role_name)
|
3976
3999
|
include Aws::Structure
|
3977
4000
|
end
|
3978
4001
|
|
@@ -4044,6 +4067,14 @@ module Aws::CloudFormation
|
|
4044
4067
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
4045
4068
|
# @return [String]
|
4046
4069
|
#
|
4070
|
+
# @!attribute [rw] execution_role_name
|
4071
|
+
# The name of the IAM execution role used to create or update the
|
4072
|
+
# stack set.
|
4073
|
+
#
|
4074
|
+
# Use customized execution roles to control which stack resources
|
4075
|
+
# users and groups can include in their stack sets.
|
4076
|
+
# @return [String]
|
4077
|
+
#
|
4047
4078
|
# @!attribute [rw] creation_timestamp
|
4048
4079
|
# The time at which the operation was initiated. Note that the
|
4049
4080
|
# creation times for the stack set operation might differ from the
|
@@ -4070,6 +4101,7 @@ module Aws::CloudFormation
|
|
4070
4101
|
:operation_preferences,
|
4071
4102
|
:retain_stacks,
|
4072
4103
|
:administration_role_arn,
|
4104
|
+
:execution_role_name,
|
4073
4105
|
:creation_timestamp,
|
4074
4106
|
:end_timestamp)
|
4075
4107
|
include Aws::Structure
|
@@ -4774,7 +4806,7 @@ module Aws::CloudFormation
|
|
4774
4806
|
# data as a hash:
|
4775
4807
|
#
|
4776
4808
|
# {
|
4777
|
-
# stack_set_name: "
|
4809
|
+
# stack_set_name: "StackSetNameOrId", # required
|
4778
4810
|
# accounts: ["Account"], # required
|
4779
4811
|
# regions: ["Region"], # required
|
4780
4812
|
# parameter_overrides: [
|
@@ -4949,7 +4981,10 @@ module Aws::CloudFormation
|
|
4949
4981
|
# max_concurrent_percentage: 1,
|
4950
4982
|
# },
|
4951
4983
|
# administration_role_arn: "RoleARN",
|
4984
|
+
# execution_role_name: "ExecutionRoleName",
|
4952
4985
|
# operation_id: "ClientRequestToken",
|
4986
|
+
# accounts: ["Account"],
|
4987
|
+
# regions: ["Region"],
|
4953
4988
|
# }
|
4954
4989
|
#
|
4955
4990
|
# @!attribute [rw] stack_set_name
|
@@ -5107,6 +5142,23 @@ module Aws::CloudFormation
|
|
5107
5142
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html
|
5108
5143
|
# @return [String]
|
5109
5144
|
#
|
5145
|
+
# @!attribute [rw] execution_role_name
|
5146
|
+
# The name of the IAM execution role to use to update the stack set.
|
5147
|
+
# If you do not specify an execution role, AWS CloudFormation uses the
|
5148
|
+
# `AWSCloudFormationStackSetExecutionRole` role for the stack set
|
5149
|
+
# operation.
|
5150
|
+
#
|
5151
|
+
# Specify an IAM role only if you are using customized execution roles
|
5152
|
+
# to control which stack resources users and groups can include in
|
5153
|
+
# their stack sets.
|
5154
|
+
#
|
5155
|
+
# If you specify a customized execution role, AWS CloudFormation uses
|
5156
|
+
# that role to update the stack. If you do not specify a customized
|
5157
|
+
# execution role, AWS CloudFormation performs the update using the
|
5158
|
+
# role previously associated with the stack set, so long as you have
|
5159
|
+
# permissions to perform operations on the stack set.
|
5160
|
+
# @return [String]
|
5161
|
+
#
|
5110
5162
|
# @!attribute [rw] operation_id
|
5111
5163
|
# The unique ID for this stack set operation.
|
5112
5164
|
#
|
@@ -5126,6 +5178,44 @@ module Aws::CloudFormation
|
|
5126
5178
|
# not need to pass this option.
|
5127
5179
|
# @return [String]
|
5128
5180
|
#
|
5181
|
+
# @!attribute [rw] accounts
|
5182
|
+
# The accounts in which to update associated stack instances. If you
|
5183
|
+
# specify accounts, you must also specify the regions in which to
|
5184
|
+
# update stack set instances.
|
5185
|
+
#
|
5186
|
+
# To update *all* the stack instances associated with this stack set,
|
5187
|
+
# do not specify the `Accounts` or `Regions` properties.
|
5188
|
+
#
|
5189
|
+
# If the stack set update includes changes to the template (that is,
|
5190
|
+
# if the `TemplateBody` or `TemplateURL` properties are specified), or
|
5191
|
+
# the `Parameters` property, AWS CloudFormation marks all stack
|
5192
|
+
# instances with a status of `OUTDATED` prior to updating the stack
|
5193
|
+
# instances in the specified accounts and regions. If the stack set
|
5194
|
+
# update does not include changes to the template or parameters, AWS
|
5195
|
+
# CloudFormation updates the stack instances in the specified accounts
|
5196
|
+
# and regions, while leaving all other stack instances with their
|
5197
|
+
# existing stack instance status.
|
5198
|
+
# @return [Array<String>]
|
5199
|
+
#
|
5200
|
+
# @!attribute [rw] regions
|
5201
|
+
# The regions in which to update associated stack instances. If you
|
5202
|
+
# specify regions, you must also specify accounts in which to update
|
5203
|
+
# stack set instances.
|
5204
|
+
#
|
5205
|
+
# To update *all* the stack instances associated with this stack set,
|
5206
|
+
# do not specify the `Accounts` or `Regions` properties.
|
5207
|
+
#
|
5208
|
+
# If the stack set update includes changes to the template (that is,
|
5209
|
+
# if the `TemplateBody` or `TemplateURL` properties are specified), or
|
5210
|
+
# the `Parameters` property, AWS CloudFormation marks all stack
|
5211
|
+
# instances with a status of `OUTDATED` prior to updating the stack
|
5212
|
+
# instances in the specified accounts and regions. If the stack set
|
5213
|
+
# update does not include changes to the template or parameters, AWS
|
5214
|
+
# CloudFormation updates the stack instances in the specified accounts
|
5215
|
+
# and regions, while leaving all other stack instances with their
|
5216
|
+
# existing stack instance status.
|
5217
|
+
# @return [Array<String>]
|
5218
|
+
#
|
5129
5219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSetInput AWS API Documentation
|
5130
5220
|
#
|
5131
5221
|
class UpdateStackSetInput < Struct.new(
|
@@ -5139,7 +5229,10 @@ module Aws::CloudFormation
|
|
5139
5229
|
:tags,
|
5140
5230
|
:operation_preferences,
|
5141
5231
|
:administration_role_arn,
|
5142
|
-
:
|
5232
|
+
:execution_role_name,
|
5233
|
+
:operation_id,
|
5234
|
+
:accounts,
|
5235
|
+
:regions)
|
5143
5236
|
include Aws::Structure
|
5144
5237
|
end
|
5145
5238
|
|
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.5.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: 2018-
|
11
|
+
date: 2018-05-21 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.2.
|
83
|
+
rubygems_version: 2.5.2.3
|
84
84
|
signing_key:
|
85
85
|
specification_version: 4
|
86
86
|
summary: AWS SDK for Ruby - AWS CloudFormation
|