aws-sdk-cloudformation 1.45.0 → 1.50.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 +335 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-cloudformation.rb +2 -2
- data/lib/aws-sdk-cloudformation/client.rb +536 -155
- data/lib/aws-sdk-cloudformation/client_api.rb +34 -1
- data/lib/aws-sdk-cloudformation/customizations.rb +1 -1
- data/lib/aws-sdk-cloudformation/errors.rb +1 -1
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +3 -3
- data/lib/aws-sdk-cloudformation/stack.rb +6 -5
- data/lib/aws-sdk-cloudformation/stack_resource.rb +9 -1
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +9 -1
- data/lib/aws-sdk-cloudformation/types.rb +688 -207
- data/lib/aws-sdk-cloudformation/waiters.rb +1 -1
- metadata +10 -7
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -20,6 +20,7 @@ module Aws::CloudFormation
|
|
20
20
|
AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
|
21
21
|
AccountLimitList = Shapes::ListShape.new(name: 'AccountLimitList')
|
22
22
|
AccountList = Shapes::ListShape.new(name: 'AccountList')
|
23
|
+
AccountsUrl = Shapes::StringShape.new(name: 'AccountsUrl')
|
23
24
|
AllowedValue = Shapes::StringShape.new(name: 'AllowedValue')
|
24
25
|
AllowedValues = Shapes::ListShape.new(name: 'AllowedValues')
|
25
26
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
@@ -29,6 +30,7 @@ module Aws::CloudFormation
|
|
29
30
|
BoxedInteger = Shapes::IntegerShape.new(name: 'BoxedInteger')
|
30
31
|
BoxedMaxResults = Shapes::IntegerShape.new(name: 'BoxedMaxResults')
|
31
32
|
CFNRegistryException = Shapes::StructureShape.new(name: 'CFNRegistryException')
|
33
|
+
CallAs = Shapes::StringShape.new(name: 'CallAs')
|
32
34
|
CancelUpdateStackInput = Shapes::StructureShape.new(name: 'CancelUpdateStackInput')
|
33
35
|
Capabilities = Shapes::ListShape.new(name: 'Capabilities')
|
34
36
|
CapabilitiesReason = Shapes::StringShape.new(name: 'CapabilitiesReason')
|
@@ -174,12 +176,14 @@ module Aws::CloudFormation
|
|
174
176
|
ListTypesOutput = Shapes::StructureShape.new(name: 'ListTypesOutput')
|
175
177
|
LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
|
176
178
|
LoggingConfig = Shapes::StructureShape.new(name: 'LoggingConfig')
|
179
|
+
LogicalIdHierarchy = Shapes::StringShape.new(name: 'LogicalIdHierarchy')
|
177
180
|
LogicalResourceId = Shapes::StringShape.new(name: 'LogicalResourceId')
|
178
181
|
LogicalResourceIds = Shapes::ListShape.new(name: 'LogicalResourceIds')
|
179
182
|
MaxConcurrentCount = Shapes::IntegerShape.new(name: 'MaxConcurrentCount')
|
180
183
|
MaxConcurrentPercentage = Shapes::IntegerShape.new(name: 'MaxConcurrentPercentage')
|
181
184
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
182
185
|
Metadata = Shapes::StringShape.new(name: 'Metadata')
|
186
|
+
ModuleInfo = Shapes::StructureShape.new(name: 'ModuleInfo')
|
183
187
|
MonitoringTimeInMinutes = Shapes::IntegerShape.new(name: 'MonitoringTimeInMinutes')
|
184
188
|
NameAlreadyExistsException = Shapes::StructureShape.new(name: 'NameAlreadyExistsException')
|
185
189
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
@@ -223,6 +227,7 @@ module Aws::CloudFormation
|
|
223
227
|
RecordHandlerProgressInput = Shapes::StructureShape.new(name: 'RecordHandlerProgressInput')
|
224
228
|
RecordHandlerProgressOutput = Shapes::StructureShape.new(name: 'RecordHandlerProgressOutput')
|
225
229
|
Region = Shapes::StringShape.new(name: 'Region')
|
230
|
+
RegionConcurrencyType = Shapes::StringShape.new(name: 'RegionConcurrencyType')
|
226
231
|
RegionList = Shapes::ListShape.new(name: 'RegionList')
|
227
232
|
RegisterTypeInput = Shapes::StructureShape.new(name: 'RegisterTypeInput')
|
228
233
|
RegisterTypeOutput = Shapes::StructureShape.new(name: 'RegisterTypeOutput')
|
@@ -360,6 +365,7 @@ module Aws::CloudFormation
|
|
360
365
|
TransformsList = Shapes::ListShape.new(name: 'TransformsList')
|
361
366
|
Type = Shapes::StringShape.new(name: 'Type')
|
362
367
|
TypeArn = Shapes::StringShape.new(name: 'TypeArn')
|
368
|
+
TypeHierarchy = Shapes::StringShape.new(name: 'TypeHierarchy')
|
363
369
|
TypeName = Shapes::StringShape.new(name: 'TypeName')
|
364
370
|
TypeNotFoundException = Shapes::StructureShape.new(name: 'TypeNotFoundException')
|
365
371
|
TypeSchema = Shapes::StringShape.new(name: 'TypeSchema')
|
@@ -495,6 +501,7 @@ module Aws::CloudFormation
|
|
495
501
|
CreateStackInstancesInput.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: Parameters, location_name: "ParameterOverrides"))
|
496
502
|
CreateStackInstancesInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
497
503
|
CreateStackInstancesInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
504
|
+
CreateStackInstancesInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
498
505
|
CreateStackInstancesInput.struct_class = Types::CreateStackInstancesInput
|
499
506
|
|
500
507
|
CreateStackInstancesOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -514,6 +521,7 @@ module Aws::CloudFormation
|
|
514
521
|
CreateStackSetInput.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName"))
|
515
522
|
CreateStackSetInput.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
|
516
523
|
CreateStackSetInput.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
|
524
|
+
CreateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
517
525
|
CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
518
526
|
CreateStackSetInput.struct_class = Types::CreateStackSetInput
|
519
527
|
|
@@ -541,17 +549,20 @@ module Aws::CloudFormation
|
|
541
549
|
DeleteStackInstancesInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
542
550
|
DeleteStackInstancesInput.add_member(:retain_stacks, Shapes::ShapeRef.new(shape: RetainStacks, required: true, location_name: "RetainStacks"))
|
543
551
|
DeleteStackInstancesInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
552
|
+
DeleteStackInstancesInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
544
553
|
DeleteStackInstancesInput.struct_class = Types::DeleteStackInstancesInput
|
545
554
|
|
546
555
|
DeleteStackInstancesOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
547
556
|
DeleteStackInstancesOutput.struct_class = Types::DeleteStackInstancesOutput
|
548
557
|
|
549
558
|
DeleteStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
559
|
+
DeleteStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
550
560
|
DeleteStackSetInput.struct_class = Types::DeleteStackSetInput
|
551
561
|
|
552
562
|
DeleteStackSetOutput.struct_class = Types::DeleteStackSetOutput
|
553
563
|
|
554
564
|
DeploymentTargets.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
|
565
|
+
DeploymentTargets.add_member(:accounts_url, Shapes::ShapeRef.new(shape: AccountsUrl, location_name: "AccountsUrl"))
|
555
566
|
DeploymentTargets.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
|
556
567
|
DeploymentTargets.struct_class = Types::DeploymentTargets
|
557
568
|
|
@@ -619,6 +630,7 @@ module Aws::CloudFormation
|
|
619
630
|
DescribeStackInstanceInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
620
631
|
DescribeStackInstanceInput.add_member(:stack_instance_account, Shapes::ShapeRef.new(shape: Account, required: true, location_name: "StackInstanceAccount"))
|
621
632
|
DescribeStackInstanceInput.add_member(:stack_instance_region, Shapes::ShapeRef.new(shape: Region, required: true, location_name: "StackInstanceRegion"))
|
633
|
+
DescribeStackInstanceInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
622
634
|
DescribeStackInstanceInput.struct_class = Types::DescribeStackInstanceInput
|
623
635
|
|
624
636
|
DescribeStackInstanceOutput.add_member(:stack_instance, Shapes::ShapeRef.new(shape: StackInstance, location_name: "StackInstance"))
|
@@ -650,10 +662,12 @@ module Aws::CloudFormation
|
|
650
662
|
DescribeStackResourcesOutput.struct_class = Types::DescribeStackResourcesOutput
|
651
663
|
|
652
664
|
DescribeStackSetInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
665
|
+
DescribeStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
653
666
|
DescribeStackSetInput.struct_class = Types::DescribeStackSetInput
|
654
667
|
|
655
668
|
DescribeStackSetOperationInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
656
669
|
DescribeStackSetOperationInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "OperationId"))
|
670
|
+
DescribeStackSetOperationInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
657
671
|
DescribeStackSetOperationInput.struct_class = Types::DescribeStackSetOperationInput
|
658
672
|
|
659
673
|
DescribeStackSetOperationOutput.add_member(:stack_set_operation, Shapes::ShapeRef.new(shape: StackSetOperation, location_name: "StackSetOperation"))
|
@@ -720,6 +734,7 @@ module Aws::CloudFormation
|
|
720
734
|
DetectStackSetDriftInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, required: true, location_name: "StackSetName"))
|
721
735
|
DetectStackSetDriftInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
722
736
|
DetectStackSetDriftInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
737
|
+
DetectStackSetDriftInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
723
738
|
DetectStackSetDriftInput.struct_class = Types::DetectStackSetDriftInput
|
724
739
|
|
725
740
|
DetectStackSetDriftOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -820,6 +835,7 @@ module Aws::CloudFormation
|
|
820
835
|
ListStackInstancesInput.add_member(:filters, Shapes::ShapeRef.new(shape: StackInstanceFilters, location_name: "Filters"))
|
821
836
|
ListStackInstancesInput.add_member(:stack_instance_account, Shapes::ShapeRef.new(shape: Account, location_name: "StackInstanceAccount"))
|
822
837
|
ListStackInstancesInput.add_member(:stack_instance_region, Shapes::ShapeRef.new(shape: Region, location_name: "StackInstanceRegion"))
|
838
|
+
ListStackInstancesInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
823
839
|
ListStackInstancesInput.struct_class = Types::ListStackInstancesInput
|
824
840
|
|
825
841
|
ListStackInstancesOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackInstanceSummaries, location_name: "Summaries"))
|
@@ -838,6 +854,7 @@ module Aws::CloudFormation
|
|
838
854
|
ListStackSetOperationResultsInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "OperationId"))
|
839
855
|
ListStackSetOperationResultsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
840
856
|
ListStackSetOperationResultsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
857
|
+
ListStackSetOperationResultsInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
841
858
|
ListStackSetOperationResultsInput.struct_class = Types::ListStackSetOperationResultsInput
|
842
859
|
|
843
860
|
ListStackSetOperationResultsOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackSetOperationResultSummaries, location_name: "Summaries"))
|
@@ -847,6 +864,7 @@ module Aws::CloudFormation
|
|
847
864
|
ListStackSetOperationsInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
848
865
|
ListStackSetOperationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
849
866
|
ListStackSetOperationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
867
|
+
ListStackSetOperationsInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
850
868
|
ListStackSetOperationsInput.struct_class = Types::ListStackSetOperationsInput
|
851
869
|
|
852
870
|
ListStackSetOperationsOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackSetOperationSummaries, location_name: "Summaries"))
|
@@ -856,6 +874,7 @@ module Aws::CloudFormation
|
|
856
874
|
ListStackSetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
857
875
|
ListStackSetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
858
876
|
ListStackSetsInput.add_member(:status, Shapes::ShapeRef.new(shape: StackSetStatus, location_name: "Status"))
|
877
|
+
ListStackSetsInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
859
878
|
ListStackSetsInput.struct_class = Types::ListStackSetsInput
|
860
879
|
|
861
880
|
ListStackSetsOutput.add_member(:summaries, Shapes::ShapeRef.new(shape: StackSetSummaries, location_name: "Summaries"))
|
@@ -897,6 +916,7 @@ module Aws::CloudFormation
|
|
897
916
|
ListTypesInput.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
898
917
|
ListTypesInput.add_member(:provisioning_type, Shapes::ShapeRef.new(shape: ProvisioningType, location_name: "ProvisioningType"))
|
899
918
|
ListTypesInput.add_member(:deprecated_status, Shapes::ShapeRef.new(shape: DeprecatedStatus, location_name: "DeprecatedStatus"))
|
919
|
+
ListTypesInput.add_member(:type, Shapes::ShapeRef.new(shape: RegistryType, location_name: "Type"))
|
900
920
|
ListTypesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
901
921
|
ListTypesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
902
922
|
ListTypesInput.struct_class = Types::ListTypesInput
|
@@ -911,6 +931,10 @@ module Aws::CloudFormation
|
|
911
931
|
|
912
932
|
LogicalResourceIds.member = Shapes::ShapeRef.new(shape: LogicalResourceId)
|
913
933
|
|
934
|
+
ModuleInfo.add_member(:type_hierarchy, Shapes::ShapeRef.new(shape: TypeHierarchy, location_name: "TypeHierarchy"))
|
935
|
+
ModuleInfo.add_member(:logical_id_hierarchy, Shapes::ShapeRef.new(shape: LogicalIdHierarchy, location_name: "LogicalIdHierarchy"))
|
936
|
+
ModuleInfo.struct_class = Types::ModuleInfo
|
937
|
+
|
914
938
|
NameAlreadyExistsException.struct_class = Types::NameAlreadyExistsException
|
915
939
|
|
916
940
|
NotificationARNs.member = Shapes::ShapeRef.new(shape: NotificationARN)
|
@@ -1002,6 +1026,7 @@ module Aws::CloudFormation
|
|
1002
1026
|
ResourceChange.add_member(:scope, Shapes::ShapeRef.new(shape: Scope, location_name: "Scope"))
|
1003
1027
|
ResourceChange.add_member(:details, Shapes::ShapeRef.new(shape: ResourceChangeDetails, location_name: "Details"))
|
1004
1028
|
ResourceChange.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ChangeSetId"))
|
1029
|
+
ResourceChange.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1005
1030
|
ResourceChange.struct_class = Types::ResourceChange
|
1006
1031
|
|
1007
1032
|
ResourceChangeDetail.add_member(:target, Shapes::ShapeRef.new(shape: ResourceTargetDefinition, location_name: "Target"))
|
@@ -1168,6 +1193,7 @@ module Aws::CloudFormation
|
|
1168
1193
|
StackResource.add_member(:resource_status_reason, Shapes::ShapeRef.new(shape: ResourceStatusReason, location_name: "ResourceStatusReason"))
|
1169
1194
|
StackResource.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
1170
1195
|
StackResource.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackResourceDriftInformation, location_name: "DriftInformation"))
|
1196
|
+
StackResource.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1171
1197
|
StackResource.struct_class = Types::StackResource
|
1172
1198
|
|
1173
1199
|
StackResourceDetail.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackName, location_name: "StackName"))
|
@@ -1181,6 +1207,7 @@ module Aws::CloudFormation
|
|
1181
1207
|
StackResourceDetail.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
1182
1208
|
StackResourceDetail.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
|
1183
1209
|
StackResourceDetail.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackResourceDriftInformation, location_name: "DriftInformation"))
|
1210
|
+
StackResourceDetail.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1184
1211
|
StackResourceDetail.struct_class = Types::StackResourceDetail
|
1185
1212
|
|
1186
1213
|
StackResourceDrift.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, required: true, location_name: "StackId"))
|
@@ -1193,6 +1220,7 @@ module Aws::CloudFormation
|
|
1193
1220
|
StackResourceDrift.add_member(:property_differences, Shapes::ShapeRef.new(shape: PropertyDifferences, location_name: "PropertyDifferences"))
|
1194
1221
|
StackResourceDrift.add_member(:stack_resource_drift_status, Shapes::ShapeRef.new(shape: StackResourceDriftStatus, required: true, location_name: "StackResourceDriftStatus"))
|
1195
1222
|
StackResourceDrift.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "Timestamp"))
|
1223
|
+
StackResourceDrift.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1196
1224
|
StackResourceDrift.struct_class = Types::StackResourceDrift
|
1197
1225
|
|
1198
1226
|
StackResourceDriftInformation.add_member(:stack_resource_drift_status, Shapes::ShapeRef.new(shape: StackResourceDriftStatus, required: true, location_name: "StackResourceDriftStatus"))
|
@@ -1216,6 +1244,7 @@ module Aws::CloudFormation
|
|
1216
1244
|
StackResourceSummary.add_member(:resource_status, Shapes::ShapeRef.new(shape: ResourceStatus, required: true, location_name: "ResourceStatus"))
|
1217
1245
|
StackResourceSummary.add_member(:resource_status_reason, Shapes::ShapeRef.new(shape: ResourceStatusReason, location_name: "ResourceStatusReason"))
|
1218
1246
|
StackResourceSummary.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackResourceDriftInformationSummary, location_name: "DriftInformation"))
|
1247
|
+
StackResourceSummary.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1219
1248
|
StackResourceSummary.struct_class = Types::StackResourceSummary
|
1220
1249
|
|
1221
1250
|
StackResources.member = Shapes::ShapeRef.new(shape: StackResource)
|
@@ -1265,6 +1294,7 @@ module Aws::CloudFormation
|
|
1265
1294
|
StackSetOperation.add_member(:stack_set_drift_detection_details, Shapes::ShapeRef.new(shape: StackSetDriftDetectionDetails, location_name: "StackSetDriftDetectionDetails"))
|
1266
1295
|
StackSetOperation.struct_class = Types::StackSetOperation
|
1267
1296
|
|
1297
|
+
StackSetOperationPreferences.add_member(:region_concurrency_type, Shapes::ShapeRef.new(shape: RegionConcurrencyType, location_name: "RegionConcurrencyType"))
|
1268
1298
|
StackSetOperationPreferences.add_member(:region_order, Shapes::ShapeRef.new(shape: RegionList, location_name: "RegionOrder"))
|
1269
1299
|
StackSetOperationPreferences.add_member(:failure_tolerance_count, Shapes::ShapeRef.new(shape: FailureToleranceCount, location_name: "FailureToleranceCount"))
|
1270
1300
|
StackSetOperationPreferences.add_member(:failure_tolerance_percentage, Shapes::ShapeRef.new(shape: FailureTolerancePercentage, location_name: "FailureTolerancePercentage"))
|
@@ -1328,6 +1358,7 @@ module Aws::CloudFormation
|
|
1328
1358
|
|
1329
1359
|
StopStackSetOperationInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetName, required: true, location_name: "StackSetName"))
|
1330
1360
|
StopStackSetOperationInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "OperationId"))
|
1361
|
+
StopStackSetOperationInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
1331
1362
|
StopStackSetOperationInput.struct_class = Types::StopStackSetOperationInput
|
1332
1363
|
|
1333
1364
|
StopStackSetOperationOutput.struct_class = Types::StopStackSetOperationOutput
|
@@ -1398,6 +1429,7 @@ module Aws::CloudFormation
|
|
1398
1429
|
UpdateStackInstancesInput.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: Parameters, location_name: "ParameterOverrides"))
|
1399
1430
|
UpdateStackInstancesInput.add_member(:operation_preferences, Shapes::ShapeRef.new(shape: StackSetOperationPreferences, location_name: "OperationPreferences"))
|
1400
1431
|
UpdateStackInstancesInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
1432
|
+
UpdateStackInstancesInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
1401
1433
|
UpdateStackInstancesInput.struct_class = Types::UpdateStackInstancesInput
|
1402
1434
|
|
1403
1435
|
UpdateStackInstancesOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -1423,6 +1455,7 @@ module Aws::CloudFormation
|
|
1423
1455
|
UpdateStackSetInput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId", metadata: {"idempotencyToken"=>true}))
|
1424
1456
|
UpdateStackSetInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
|
1425
1457
|
UpdateStackSetInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
|
1458
|
+
UpdateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
1426
1459
|
UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
|
1427
1460
|
|
1428
1461
|
UpdateStackSetOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# WARNING ABOUT GENERATED CODE
|
3
3
|
#
|
4
4
|
# This file is generated. See the contributing for info on making contributions:
|
5
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
5
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
6
6
|
#
|
7
7
|
# WARNING ABOUT GENERATED CODE
|
8
8
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -100,8 +100,8 @@ module Aws::CloudFormation
|
|
100
100
|
# @option options [String] :template_url
|
101
101
|
# Location of file containing the template body. The URL must point to a
|
102
102
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
103
|
-
# bucket. For more information, go to the
|
104
|
-
# AWS CloudFormation User Guide.
|
103
|
+
# bucket or a Systems Manager document. For more information, go to the
|
104
|
+
# [Template Anatomy][1] in the AWS CloudFormation User Guide.
|
105
105
|
#
|
106
106
|
# Conditional: You must specify either the `TemplateBody` or the
|
107
107
|
# `TemplateURL` parameter, but not both.
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -446,8 +446,8 @@ module Aws::CloudFormation
|
|
446
446
|
# @option options [String] :template_url
|
447
447
|
# Location of file containing the template body. The URL must point to a
|
448
448
|
# template (max size: 460,800 bytes) that is located in an Amazon S3
|
449
|
-
# bucket. For more information, go to the
|
450
|
-
# AWS CloudFormation User Guide.
|
449
|
+
# bucket or a Systems Manager document. For more information, go to the
|
450
|
+
# [Template Anatomy][1] in the AWS CloudFormation User Guide.
|
451
451
|
#
|
452
452
|
# Conditional: You must specify either the `TemplateBody` or the
|
453
453
|
# `TemplateURL` parameter, but not both.
|
@@ -775,8 +775,9 @@ module Aws::CloudFormation
|
|
775
775
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html
|
776
776
|
# @option options [String] :template_url
|
777
777
|
# Location of file containing the template body. The URL must point to a
|
778
|
-
# template that is located in an Amazon S3 bucket
|
779
|
-
# go to [Template Anatomy][1] in the AWS
|
778
|
+
# template that is located in an Amazon S3 bucket or a Systems Manager
|
779
|
+
# document. For more information, go to [Template Anatomy][1] in the AWS
|
780
|
+
# CloudFormation User Guide.
|
780
781
|
#
|
781
782
|
# Conditional: You must specify only one of the following parameters:
|
782
783
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -117,6 +117,14 @@ module Aws::CloudFormation
|
|
117
117
|
data[:drift_information]
|
118
118
|
end
|
119
119
|
|
120
|
+
# Contains information about the module from which the resource was
|
121
|
+
# created, if the resource was created from a module included in the
|
122
|
+
# stack template.
|
123
|
+
# @return [Types::ModuleInfo]
|
124
|
+
def module_info
|
125
|
+
data[:module_info]
|
126
|
+
end
|
127
|
+
|
120
128
|
# @!endgroup
|
121
129
|
|
122
130
|
# @return [Client]
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -93,6 +93,14 @@ module Aws::CloudFormation
|
|
93
93
|
data[:drift_information]
|
94
94
|
end
|
95
95
|
|
96
|
+
# Contains information about the module from which the resource was
|
97
|
+
# created, if the resource was created from a module included in the
|
98
|
+
# stack template.
|
99
|
+
# @return [Types::ModuleInfo]
|
100
|
+
def module_info
|
101
|
+
data[:module_info]
|
102
|
+
end
|
103
|
+
|
96
104
|
# @!endgroup
|
97
105
|
|
98
106
|
# @return [Client]
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -119,7 +119,7 @@ module Aws::CloudFormation
|
|
119
119
|
#
|
120
120
|
class AlreadyExistsException < Aws::EmptyStructure; end
|
121
121
|
|
122
|
-
# \[
|
122
|
+
# \[Service-managed permissions\] Describes whether StackSets
|
123
123
|
# automatically deploys to AWS Organizations accounts that are added to
|
124
124
|
# a target organization or organizational unit (OU).
|
125
125
|
#
|
@@ -489,8 +489,9 @@ module Aws::CloudFormation
|
|
489
489
|
# @!attribute [rw] template_url
|
490
490
|
# The location of the file that contains the revised template. The URL
|
491
491
|
# must point to a template (max size: 460,800 bytes) that is located
|
492
|
-
# in an S3 bucket
|
493
|
-
# comparing this template with the stack
|
492
|
+
# in an S3 bucket or a Systems Manager document. AWS CloudFormation
|
493
|
+
# generates the change set by comparing this template with the stack
|
494
|
+
# that you specified.
|
494
495
|
#
|
495
496
|
# Conditional: You must specify only `TemplateBody` or `TemplateURL`.
|
496
497
|
# @return [String]
|
@@ -812,8 +813,8 @@ module Aws::CloudFormation
|
|
812
813
|
# @!attribute [rw] template_url
|
813
814
|
# Location of file containing the template body. The URL must point to
|
814
815
|
# a template (max size: 460,800 bytes) that is located in an Amazon S3
|
815
|
-
# bucket. For more information, go to
|
816
|
-
# AWS CloudFormation User Guide.
|
816
|
+
# bucket or a Systems Manager document. For more information, go to
|
817
|
+
# the [Template Anatomy][1] in the AWS CloudFormation User Guide.
|
817
818
|
#
|
818
819
|
# Conditional: You must specify either the `TemplateBody` or the
|
819
820
|
# `TemplateURL` parameter, but not both.
|
@@ -1091,6 +1092,7 @@ module Aws::CloudFormation
|
|
1091
1092
|
# accounts: ["Account"],
|
1092
1093
|
# deployment_targets: {
|
1093
1094
|
# accounts: ["Account"],
|
1095
|
+
# accounts_url: "AccountsUrl",
|
1094
1096
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1095
1097
|
# },
|
1096
1098
|
# regions: ["Region"], # required
|
@@ -1103,6 +1105,7 @@ module Aws::CloudFormation
|
|
1103
1105
|
# },
|
1104
1106
|
# ],
|
1105
1107
|
# operation_preferences: {
|
1108
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1106
1109
|
# region_order: ["Region"],
|
1107
1110
|
# failure_tolerance_count: 1,
|
1108
1111
|
# failure_tolerance_percentage: 1,
|
@@ -1110,6 +1113,7 @@ module Aws::CloudFormation
|
|
1110
1113
|
# max_concurrent_percentage: 1,
|
1111
1114
|
# },
|
1112
1115
|
# operation_id: "ClientRequestToken",
|
1116
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1113
1117
|
# }
|
1114
1118
|
#
|
1115
1119
|
# @!attribute [rw] stack_set_name
|
@@ -1118,7 +1122,7 @@ module Aws::CloudFormation
|
|
1118
1122
|
# @return [String]
|
1119
1123
|
#
|
1120
1124
|
# @!attribute [rw] accounts
|
1121
|
-
# \[
|
1125
|
+
# \[Self-managed permissions\] The names of one or more AWS accounts
|
1122
1126
|
# that you want to create stack instances in the specified Region(s)
|
1123
1127
|
# for.
|
1124
1128
|
#
|
@@ -1126,7 +1130,7 @@ module Aws::CloudFormation
|
|
1126
1130
|
# @return [Array<String>]
|
1127
1131
|
#
|
1128
1132
|
# @!attribute [rw] deployment_targets
|
1129
|
-
# \[
|
1133
|
+
# \[Service-managed permissions\] The AWS Organizations accounts for
|
1130
1134
|
# which to create stack instances in the specified Regions.
|
1131
1135
|
#
|
1132
1136
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
@@ -1201,6 +1205,29 @@ module Aws::CloudFormation
|
|
1201
1205
|
# not need to pass this option.
|
1202
1206
|
# @return [String]
|
1203
1207
|
#
|
1208
|
+
# @!attribute [rw] call_as
|
1209
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
1210
|
+
# an account administrator in the organization's management account
|
1211
|
+
# or as a delegated administrator in a member account.
|
1212
|
+
#
|
1213
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1214
|
+
# self-managed permissions.
|
1215
|
+
#
|
1216
|
+
# * If you are signed in to the management account, specify `SELF`.
|
1217
|
+
#
|
1218
|
+
# * If you are signed in to a delegated administrator account, specify
|
1219
|
+
# `DELEGATED_ADMIN`.
|
1220
|
+
#
|
1221
|
+
# Your AWS account must be registered as a delegated administrator
|
1222
|
+
# in the management account. For more information, see [Register a
|
1223
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
1224
|
+
# Guide*.
|
1225
|
+
#
|
1226
|
+
#
|
1227
|
+
#
|
1228
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1229
|
+
# @return [String]
|
1230
|
+
#
|
1204
1231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstancesInput AWS API Documentation
|
1205
1232
|
#
|
1206
1233
|
class CreateStackInstancesInput < Struct.new(
|
@@ -1210,7 +1237,8 @@ module Aws::CloudFormation
|
|
1210
1237
|
:regions,
|
1211
1238
|
:parameter_overrides,
|
1212
1239
|
:operation_preferences,
|
1213
|
-
:operation_id
|
1240
|
+
:operation_id,
|
1241
|
+
:call_as)
|
1214
1242
|
SENSITIVE = []
|
1215
1243
|
include Aws::Structure
|
1216
1244
|
end
|
@@ -1271,6 +1299,7 @@ module Aws::CloudFormation
|
|
1271
1299
|
# enabled: false,
|
1272
1300
|
# retain_stacks_on_account_removal: false,
|
1273
1301
|
# },
|
1302
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1274
1303
|
# client_request_token: "ClientRequestToken",
|
1275
1304
|
# }
|
1276
1305
|
#
|
@@ -1307,8 +1336,9 @@ module Aws::CloudFormation
|
|
1307
1336
|
# @!attribute [rw] template_url
|
1308
1337
|
# The location of the file that contains the template body. The URL
|
1309
1338
|
# must point to a template (maximum size: 460,800 bytes) that's
|
1310
|
-
# located in an Amazon S3 bucket
|
1311
|
-
# Anatomy][1] in the AWS
|
1339
|
+
# located in an Amazon S3 bucket or a Systems Manager document. For
|
1340
|
+
# more information, see [Template Anatomy][1] in the AWS
|
1341
|
+
# CloudFormation User Guide.
|
1312
1342
|
#
|
1313
1343
|
# Conditional: You must specify either the TemplateBody or the
|
1314
1344
|
# TemplateURL parameter, but not both.
|
@@ -1465,6 +1495,35 @@ module Aws::CloudFormation
|
|
1465
1495
|
# `SERVICE_MANAGED`.
|
1466
1496
|
# @return [Types::AutoDeployment]
|
1467
1497
|
#
|
1498
|
+
# @!attribute [rw] call_as
|
1499
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
1500
|
+
# an account administrator in the organization's management account
|
1501
|
+
# or as a delegated administrator in a member account.
|
1502
|
+
#
|
1503
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1504
|
+
# self-managed permissions.
|
1505
|
+
#
|
1506
|
+
# * To create a stack set with service-managed permissions while
|
1507
|
+
# signed in to the management account, specify `SELF`.
|
1508
|
+
#
|
1509
|
+
# * To create a stack set with service-managed permissions while
|
1510
|
+
# signed in to a delegated administrator account, specify
|
1511
|
+
# `DELEGATED_ADMIN`.
|
1512
|
+
#
|
1513
|
+
# Your AWS account must be registered as a delegated admin in the
|
1514
|
+
# management account. For more information, see [Register a
|
1515
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
1516
|
+
# Guide*.
|
1517
|
+
#
|
1518
|
+
# Stack sets with service-managed permissions are created in the
|
1519
|
+
# management account, including stack sets that are created by
|
1520
|
+
# delegated administrators.
|
1521
|
+
#
|
1522
|
+
#
|
1523
|
+
#
|
1524
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1525
|
+
# @return [String]
|
1526
|
+
#
|
1468
1527
|
# @!attribute [rw] client_request_token
|
1469
1528
|
# A unique identifier for this `CreateStackSet` request. Specify this
|
1470
1529
|
# token if you plan to retry requests so that AWS CloudFormation knows
|
@@ -1493,6 +1552,7 @@ module Aws::CloudFormation
|
|
1493
1552
|
:execution_role_name,
|
1494
1553
|
:permission_model,
|
1495
1554
|
:auto_deployment,
|
1555
|
+
:call_as,
|
1496
1556
|
:client_request_token)
|
1497
1557
|
SENSITIVE = []
|
1498
1558
|
include Aws::Structure
|
@@ -1630,10 +1690,12 @@ module Aws::CloudFormation
|
|
1630
1690
|
# accounts: ["Account"],
|
1631
1691
|
# deployment_targets: {
|
1632
1692
|
# accounts: ["Account"],
|
1693
|
+
# accounts_url: "AccountsUrl",
|
1633
1694
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1634
1695
|
# },
|
1635
1696
|
# regions: ["Region"], # required
|
1636
1697
|
# operation_preferences: {
|
1698
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1637
1699
|
# region_order: ["Region"],
|
1638
1700
|
# failure_tolerance_count: 1,
|
1639
1701
|
# failure_tolerance_percentage: 1,
|
@@ -1642,6 +1704,7 @@ module Aws::CloudFormation
|
|
1642
1704
|
# },
|
1643
1705
|
# retain_stacks: false, # required
|
1644
1706
|
# operation_id: "ClientRequestToken",
|
1707
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1645
1708
|
# }
|
1646
1709
|
#
|
1647
1710
|
# @!attribute [rw] stack_set_name
|
@@ -1650,15 +1713,15 @@ module Aws::CloudFormation
|
|
1650
1713
|
# @return [String]
|
1651
1714
|
#
|
1652
1715
|
# @!attribute [rw] accounts
|
1653
|
-
# \[
|
1654
|
-
#
|
1716
|
+
# \[Self-managed permissions\] The names of the AWS accounts that you
|
1717
|
+
# want to delete stack instances for.
|
1655
1718
|
#
|
1656
1719
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1657
1720
|
# @return [Array<String>]
|
1658
1721
|
#
|
1659
1722
|
# @!attribute [rw] deployment_targets
|
1660
|
-
# \[
|
1661
|
-
#
|
1723
|
+
# \[Service-managed permissions\] The AWS Organizations accounts from
|
1724
|
+
# which to delete stack instances.
|
1662
1725
|
#
|
1663
1726
|
# You can specify `Accounts` or `DeploymentTargets`, but not both.
|
1664
1727
|
# @return [Types::DeploymentTargets]
|
@@ -1703,6 +1766,29 @@ module Aws::CloudFormation
|
|
1703
1766
|
# not need to pass this option.
|
1704
1767
|
# @return [String]
|
1705
1768
|
#
|
1769
|
+
# @!attribute [rw] call_as
|
1770
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
1771
|
+
# an account administrator in the organization's management account
|
1772
|
+
# or as a delegated administrator in a member account.
|
1773
|
+
#
|
1774
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1775
|
+
# self-managed permissions.
|
1776
|
+
#
|
1777
|
+
# * If you are signed in to the management account, specify `SELF`.
|
1778
|
+
#
|
1779
|
+
# * If you are signed in to a delegated administrator account, specify
|
1780
|
+
# `DELEGATED_ADMIN`.
|
1781
|
+
#
|
1782
|
+
# Your AWS account must be registered as a delegated administrator
|
1783
|
+
# in the management account. For more information, see [Register a
|
1784
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
1785
|
+
# Guide*.
|
1786
|
+
#
|
1787
|
+
#
|
1788
|
+
#
|
1789
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1790
|
+
# @return [String]
|
1791
|
+
#
|
1706
1792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInstancesInput AWS API Documentation
|
1707
1793
|
#
|
1708
1794
|
class DeleteStackInstancesInput < Struct.new(
|
@@ -1712,7 +1798,8 @@ module Aws::CloudFormation
|
|
1712
1798
|
:regions,
|
1713
1799
|
:operation_preferences,
|
1714
1800
|
:retain_stacks,
|
1715
|
-
:operation_id
|
1801
|
+
:operation_id,
|
1802
|
+
:call_as)
|
1716
1803
|
SENSITIVE = []
|
1717
1804
|
include Aws::Structure
|
1718
1805
|
end
|
@@ -1734,6 +1821,7 @@ module Aws::CloudFormation
|
|
1734
1821
|
#
|
1735
1822
|
# {
|
1736
1823
|
# stack_set_name: "StackSetName", # required
|
1824
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
1737
1825
|
# }
|
1738
1826
|
#
|
1739
1827
|
# @!attribute [rw] stack_set_name
|
@@ -1741,10 +1829,34 @@ module Aws::CloudFormation
|
|
1741
1829
|
# can obtain this value by running ListStackSets.
|
1742
1830
|
# @return [String]
|
1743
1831
|
#
|
1832
|
+
# @!attribute [rw] call_as
|
1833
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
1834
|
+
# an account administrator in the organization's management account
|
1835
|
+
# or as a delegated administrator in a member account.
|
1836
|
+
#
|
1837
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
1838
|
+
# self-managed permissions.
|
1839
|
+
#
|
1840
|
+
# * If you are signed in to the management account, specify `SELF`.
|
1841
|
+
#
|
1842
|
+
# * If you are signed in to a delegated administrator account, specify
|
1843
|
+
# `DELEGATED_ADMIN`.
|
1844
|
+
#
|
1845
|
+
# Your AWS account must be registered as a delegated administrator
|
1846
|
+
# in the management account. For more information, see [Register a
|
1847
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
1848
|
+
# Guide*.
|
1849
|
+
#
|
1850
|
+
#
|
1851
|
+
#
|
1852
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
1853
|
+
# @return [String]
|
1854
|
+
#
|
1744
1855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSetInput AWS API Documentation
|
1745
1856
|
#
|
1746
1857
|
class DeleteStackSetInput < Struct.new(
|
1747
|
-
:stack_set_name
|
1858
|
+
:stack_set_name,
|
1859
|
+
:call_as)
|
1748
1860
|
SENSITIVE = []
|
1749
1861
|
include Aws::Structure
|
1750
1862
|
end
|
@@ -1753,10 +1865,11 @@ module Aws::CloudFormation
|
|
1753
1865
|
#
|
1754
1866
|
class DeleteStackSetOutput < Aws::EmptyStructure; end
|
1755
1867
|
|
1756
|
-
# \[
|
1868
|
+
# \[Service-managed permissions\] The AWS Organizations accounts to
|
1757
1869
|
# which StackSets deploys. StackSets does not deploy stack instances to
|
1758
|
-
# the organization
|
1759
|
-
# organization or in an OU in your
|
1870
|
+
# the organization management account, even if the organization
|
1871
|
+
# management account is in your organization or in an OU in your
|
1872
|
+
# organization.
|
1760
1873
|
#
|
1761
1874
|
# For update operations, you can specify either `Accounts` or
|
1762
1875
|
# `OrganizationalUnitIds`. For create and delete operations, specify
|
@@ -1767,6 +1880,7 @@ module Aws::CloudFormation
|
|
1767
1880
|
#
|
1768
1881
|
# {
|
1769
1882
|
# accounts: ["Account"],
|
1883
|
+
# accounts_url: "AccountsUrl",
|
1770
1884
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1771
1885
|
# }
|
1772
1886
|
#
|
@@ -1775,6 +1889,9 @@ module Aws::CloudFormation
|
|
1775
1889
|
# stack set updates.
|
1776
1890
|
# @return [Array<String>]
|
1777
1891
|
#
|
1892
|
+
# @!attribute [rw] accounts_url
|
1893
|
+
# @return [String]
|
1894
|
+
#
|
1778
1895
|
# @!attribute [rw] organizational_unit_ids
|
1779
1896
|
# The organization root ID or organizational unit (OU) IDs to which
|
1780
1897
|
# StackSets deploys.
|
@@ -1784,6 +1901,7 @@ module Aws::CloudFormation
|
|
1784
1901
|
#
|
1785
1902
|
class DeploymentTargets < Struct.new(
|
1786
1903
|
:accounts,
|
1904
|
+
:accounts_url,
|
1787
1905
|
:organizational_unit_ids)
|
1788
1906
|
SENSITIVE = []
|
1789
1907
|
include Aws::Structure
|
@@ -1794,38 +1912,36 @@ module Aws::CloudFormation
|
|
1794
1912
|
#
|
1795
1913
|
# {
|
1796
1914
|
# arn: "PrivateTypeArn",
|
1797
|
-
# type: "RESOURCE", # accepts RESOURCE
|
1915
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
1798
1916
|
# type_name: "TypeName",
|
1799
1917
|
# version_id: "TypeVersionId",
|
1800
1918
|
# }
|
1801
1919
|
#
|
1802
1920
|
# @!attribute [rw] arn
|
1803
|
-
# The Amazon Resource Name (ARN) of the
|
1921
|
+
# The Amazon Resource Name (ARN) of the extension.
|
1804
1922
|
#
|
1805
1923
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
1806
1924
|
# `Arn`.
|
1807
1925
|
# @return [String]
|
1808
1926
|
#
|
1809
1927
|
# @!attribute [rw] type
|
1810
|
-
# The kind of
|
1811
|
-
#
|
1812
|
-
# Currently the only valid value is `RESOURCE`.
|
1928
|
+
# The kind of extension.
|
1813
1929
|
#
|
1814
1930
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
1815
1931
|
# `Arn`.
|
1816
1932
|
# @return [String]
|
1817
1933
|
#
|
1818
1934
|
# @!attribute [rw] type_name
|
1819
|
-
# The name of the
|
1935
|
+
# The name of the extension.
|
1820
1936
|
#
|
1821
1937
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
1822
1938
|
# `Arn`.
|
1823
1939
|
# @return [String]
|
1824
1940
|
#
|
1825
1941
|
# @!attribute [rw] version_id
|
1826
|
-
# The ID of a specific version of the
|
1942
|
+
# The ID of a specific version of the extension. The version ID is the
|
1827
1943
|
# value at the end of the Amazon Resource Name (ARN) assigned to the
|
1828
|
-
#
|
1944
|
+
# extension version when it is registered.
|
1829
1945
|
# @return [String]
|
1830
1946
|
#
|
1831
1947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeregisterTypeInput AWS API Documentation
|
@@ -2219,6 +2335,7 @@ module Aws::CloudFormation
|
|
2219
2335
|
# stack_set_name: "StackSetName", # required
|
2220
2336
|
# stack_instance_account: "Account", # required
|
2221
2337
|
# stack_instance_region: "Region", # required
|
2338
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2222
2339
|
# }
|
2223
2340
|
#
|
2224
2341
|
# @!attribute [rw] stack_set_name
|
@@ -2235,12 +2352,36 @@ module Aws::CloudFormation
|
|
2235
2352
|
# The name of a Region that's associated with this stack instance.
|
2236
2353
|
# @return [String]
|
2237
2354
|
#
|
2355
|
+
# @!attribute [rw] call_as
|
2356
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
2357
|
+
# an account administrator in the organization's management account
|
2358
|
+
# or as a delegated administrator in a member account.
|
2359
|
+
#
|
2360
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
2361
|
+
# self-managed permissions.
|
2362
|
+
#
|
2363
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2364
|
+
#
|
2365
|
+
# * If you are signed in to a delegated administrator account, specify
|
2366
|
+
# `DELEGATED_ADMIN`.
|
2367
|
+
#
|
2368
|
+
# Your AWS account must be registered as a delegated administrator
|
2369
|
+
# in the management account. For more information, see [Register a
|
2370
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
2371
|
+
# Guide*.
|
2372
|
+
#
|
2373
|
+
#
|
2374
|
+
#
|
2375
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2376
|
+
# @return [String]
|
2377
|
+
#
|
2238
2378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstanceInput AWS API Documentation
|
2239
2379
|
#
|
2240
2380
|
class DescribeStackInstanceInput < Struct.new(
|
2241
2381
|
:stack_set_name,
|
2242
2382
|
:stack_instance_account,
|
2243
|
-
:stack_instance_region
|
2383
|
+
:stack_instance_region,
|
2384
|
+
:call_as)
|
2244
2385
|
SENSITIVE = []
|
2245
2386
|
include Aws::Structure
|
2246
2387
|
end
|
@@ -2475,16 +2616,41 @@ module Aws::CloudFormation
|
|
2475
2616
|
#
|
2476
2617
|
# {
|
2477
2618
|
# stack_set_name: "StackSetName", # required
|
2619
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2478
2620
|
# }
|
2479
2621
|
#
|
2480
2622
|
# @!attribute [rw] stack_set_name
|
2481
2623
|
# The name or unique ID of the stack set whose description you want.
|
2482
2624
|
# @return [String]
|
2483
2625
|
#
|
2626
|
+
# @!attribute [rw] call_as
|
2627
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
2628
|
+
# an account administrator in the organization's management account
|
2629
|
+
# or as a delegated administrator in a member account.
|
2630
|
+
#
|
2631
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
2632
|
+
# self-managed permissions.
|
2633
|
+
#
|
2634
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2635
|
+
#
|
2636
|
+
# * If you are signed in to a delegated administrator account, specify
|
2637
|
+
# `DELEGATED_ADMIN`.
|
2638
|
+
#
|
2639
|
+
# Your AWS account must be registered as a delegated administrator
|
2640
|
+
# in the management account. For more information, see [Register a
|
2641
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
2642
|
+
# Guide*.
|
2643
|
+
#
|
2644
|
+
#
|
2645
|
+
#
|
2646
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2647
|
+
# @return [String]
|
2648
|
+
#
|
2484
2649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetInput AWS API Documentation
|
2485
2650
|
#
|
2486
2651
|
class DescribeStackSetInput < Struct.new(
|
2487
|
-
:stack_set_name
|
2652
|
+
:stack_set_name,
|
2653
|
+
:call_as)
|
2488
2654
|
SENSITIVE = []
|
2489
2655
|
include Aws::Structure
|
2490
2656
|
end
|
@@ -2495,6 +2661,7 @@ module Aws::CloudFormation
|
|
2495
2661
|
# {
|
2496
2662
|
# stack_set_name: "StackSetName", # required
|
2497
2663
|
# operation_id: "ClientRequestToken", # required
|
2664
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2498
2665
|
# }
|
2499
2666
|
#
|
2500
2667
|
# @!attribute [rw] stack_set_name
|
@@ -2506,11 +2673,35 @@ module Aws::CloudFormation
|
|
2506
2673
|
# The unique ID of the stack set operation.
|
2507
2674
|
# @return [String]
|
2508
2675
|
#
|
2676
|
+
# @!attribute [rw] call_as
|
2677
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
2678
|
+
# an account administrator in the organization's management account
|
2679
|
+
# or as a delegated administrator in a member account.
|
2680
|
+
#
|
2681
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
2682
|
+
# self-managed permissions.
|
2683
|
+
#
|
2684
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2685
|
+
#
|
2686
|
+
# * If you are signed in to a delegated administrator account, specify
|
2687
|
+
# `DELEGATED_ADMIN`.
|
2688
|
+
#
|
2689
|
+
# Your AWS account must be registered as a delegated administrator
|
2690
|
+
# in the management account. For more information, see [Register a
|
2691
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
2692
|
+
# Guide*.
|
2693
|
+
#
|
2694
|
+
#
|
2695
|
+
#
|
2696
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2697
|
+
# @return [String]
|
2698
|
+
#
|
2509
2699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetOperationInput AWS API Documentation
|
2510
2700
|
#
|
2511
2701
|
class DescribeStackSetOperationInput < Struct.new(
|
2512
2702
|
:stack_set_name,
|
2513
|
-
:operation_id
|
2703
|
+
:operation_id,
|
2704
|
+
:call_as)
|
2514
2705
|
SENSITIVE = []
|
2515
2706
|
include Aws::Structure
|
2516
2707
|
end
|
@@ -2600,43 +2791,41 @@ module Aws::CloudFormation
|
|
2600
2791
|
# data as a hash:
|
2601
2792
|
#
|
2602
2793
|
# {
|
2603
|
-
# type: "RESOURCE", # accepts RESOURCE
|
2794
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
2604
2795
|
# type_name: "TypeName",
|
2605
2796
|
# arn: "TypeArn",
|
2606
2797
|
# version_id: "TypeVersionId",
|
2607
2798
|
# }
|
2608
2799
|
#
|
2609
2800
|
# @!attribute [rw] type
|
2610
|
-
# The kind of
|
2611
|
-
#
|
2612
|
-
# Currently the only valid value is `RESOURCE`.
|
2801
|
+
# The kind of extension.
|
2613
2802
|
#
|
2614
2803
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
2615
2804
|
# `Arn`.
|
2616
2805
|
# @return [String]
|
2617
2806
|
#
|
2618
2807
|
# @!attribute [rw] type_name
|
2619
|
-
# The name of the
|
2808
|
+
# The name of the extension.
|
2620
2809
|
#
|
2621
2810
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
2622
2811
|
# `Arn`.
|
2623
2812
|
# @return [String]
|
2624
2813
|
#
|
2625
2814
|
# @!attribute [rw] arn
|
2626
|
-
# The Amazon Resource Name (ARN) of the
|
2815
|
+
# The Amazon Resource Name (ARN) of the extension.
|
2627
2816
|
#
|
2628
2817
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
2629
2818
|
# `Arn`.
|
2630
2819
|
# @return [String]
|
2631
2820
|
#
|
2632
2821
|
# @!attribute [rw] version_id
|
2633
|
-
# The ID of a specific version of the
|
2822
|
+
# The ID of a specific version of the extension. The version ID is the
|
2634
2823
|
# value at the end of the Amazon Resource Name (ARN) assigned to the
|
2635
|
-
#
|
2824
|
+
# extension version when it is registered.
|
2636
2825
|
#
|
2637
2826
|
# If you specify a `VersionId`, `DescribeType` returns information
|
2638
|
-
# about that specific
|
2639
|
-
# about the default
|
2827
|
+
# about that specific extension version. Otherwise, it returns
|
2828
|
+
# information about the default extension version.
|
2640
2829
|
# @return [String]
|
2641
2830
|
#
|
2642
2831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeInput AWS API Documentation
|
@@ -2651,38 +2840,38 @@ module Aws::CloudFormation
|
|
2651
2840
|
end
|
2652
2841
|
|
2653
2842
|
# @!attribute [rw] arn
|
2654
|
-
# The Amazon Resource Name (ARN) of the
|
2843
|
+
# The Amazon Resource Name (ARN) of the extension.
|
2655
2844
|
# @return [String]
|
2656
2845
|
#
|
2657
2846
|
# @!attribute [rw] type
|
2658
|
-
# The kind of
|
2659
|
-
#
|
2660
|
-
# Currently the only valid value is `RESOURCE`.
|
2847
|
+
# The kind of extension.
|
2661
2848
|
# @return [String]
|
2662
2849
|
#
|
2663
2850
|
# @!attribute [rw] type_name
|
2664
|
-
# The name of the registered
|
2851
|
+
# The name of the registered extension.
|
2665
2852
|
# @return [String]
|
2666
2853
|
#
|
2667
2854
|
# @!attribute [rw] default_version_id
|
2668
|
-
# The ID of the default version of the
|
2669
|
-
# used when the
|
2855
|
+
# The ID of the default version of the extension. The default version
|
2856
|
+
# is used when the extension version is not specified.
|
2670
2857
|
#
|
2671
|
-
# To set the default version of
|
2858
|
+
# To set the default version of an extension, use `
|
2859
|
+
# SetTypeDefaultVersion `.
|
2672
2860
|
# @return [String]
|
2673
2861
|
#
|
2674
2862
|
# @!attribute [rw] is_default_version
|
2675
|
-
# Whether the specified
|
2863
|
+
# Whether the specified extension version is set as the default
|
2864
|
+
# version.
|
2676
2865
|
# @return [Boolean]
|
2677
2866
|
#
|
2678
2867
|
# @!attribute [rw] description
|
2679
|
-
# The description of the registered
|
2868
|
+
# The description of the registered extension.
|
2680
2869
|
# @return [String]
|
2681
2870
|
#
|
2682
2871
|
# @!attribute [rw] schema
|
2683
|
-
# The schema that defines the
|
2872
|
+
# The schema that defines the extension.
|
2684
2873
|
#
|
2685
|
-
# For more information on
|
2874
|
+
# For more information on extension schemas, see [Resource Provider
|
2686
2875
|
# Schema][1] in the *CloudFormation CLI User Guide*.
|
2687
2876
|
#
|
2688
2877
|
#
|
@@ -2691,20 +2880,20 @@ module Aws::CloudFormation
|
|
2691
2880
|
# @return [String]
|
2692
2881
|
#
|
2693
2882
|
# @!attribute [rw] provisioning_type
|
2694
|
-
# The provisioning behavior of the
|
2695
|
-
# the provisioning type during registration, based on the
|
2696
|
-
# handlers in the schema handler package submitted.
|
2883
|
+
# The provisioning behavior of the extension. AWS CloudFormation
|
2884
|
+
# determines the provisioning type during registration, based on the
|
2885
|
+
# types of handlers in the schema handler package submitted.
|
2697
2886
|
#
|
2698
2887
|
# Valid values include:
|
2699
2888
|
#
|
2700
|
-
# * `FULLY_MUTABLE`\: The
|
2701
|
-
# updates to the
|
2889
|
+
# * `FULLY_MUTABLE`\: The extension includes an update handler to
|
2890
|
+
# process updates to the extension during stack update operations.
|
2702
2891
|
#
|
2703
|
-
# * `IMMUTABLE`\: The
|
2704
|
-
#
|
2705
|
-
# update operations.
|
2892
|
+
# * `IMMUTABLE`\: The extension does not include an update handler, so
|
2893
|
+
# the extension cannot be updated and must instead be replaced
|
2894
|
+
# during stack update operations.
|
2706
2895
|
#
|
2707
|
-
# * `NON_PROVISIONABLE`\: The
|
2896
|
+
# * `NON_PROVISIONABLE`\: The extension does not include all of the
|
2708
2897
|
# following handlers, and therefore cannot actually be provisioned.
|
2709
2898
|
#
|
2710
2899
|
# * create
|
@@ -2715,61 +2904,62 @@ module Aws::CloudFormation
|
|
2715
2904
|
# @return [String]
|
2716
2905
|
#
|
2717
2906
|
# @!attribute [rw] deprecated_status
|
2718
|
-
# The deprecation status of the
|
2907
|
+
# The deprecation status of the extension version.
|
2719
2908
|
#
|
2720
2909
|
# Valid values include:
|
2721
2910
|
#
|
2722
|
-
# * `LIVE`\: The
|
2723
|
-
# operations, dependent on its provisioning behavior
|
2724
|
-
# scope.
|
2911
|
+
# * `LIVE`\: The extension is registered and can be used in
|
2912
|
+
# CloudFormation operations, dependent on its provisioning behavior
|
2913
|
+
# and visibility scope.
|
2725
2914
|
#
|
2726
|
-
# * `DEPRECATED`\: The
|
2727
|
-
# used in CloudFormation operations.
|
2915
|
+
# * `DEPRECATED`\: The extension has been deregistered and can no
|
2916
|
+
# longer be used in CloudFormation operations.
|
2728
2917
|
# @return [String]
|
2729
2918
|
#
|
2730
2919
|
# @!attribute [rw] logging_config
|
2731
|
-
# Contains logging configuration information for
|
2920
|
+
# Contains logging configuration information for an extension.
|
2732
2921
|
# @return [Types::LoggingConfig]
|
2733
2922
|
#
|
2734
2923
|
# @!attribute [rw] execution_role_arn
|
2735
2924
|
# The Amazon Resource Name (ARN) of the IAM execution role used to
|
2736
|
-
# register the
|
2737
|
-
# its handlers, you must create an <i> <a
|
2925
|
+
# register the extension. If your resource type calls AWS APIs in any
|
2926
|
+
# of its handlers, you must create an <i> <a
|
2738
2927
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
2739
2928
|
# execution role</a> </i> that includes the necessary permissions to
|
2740
2929
|
# call those AWS APIs, and provision that execution role in your
|
2741
2930
|
# account. CloudFormation then assumes that execution role to provide
|
2742
|
-
# your
|
2931
|
+
# your extension with the appropriate credentials.
|
2743
2932
|
# @return [String]
|
2744
2933
|
#
|
2745
2934
|
# @!attribute [rw] visibility
|
2746
|
-
# The scope at which the
|
2747
|
-
# operations.
|
2935
|
+
# The scope at which the extension is visible and usable in
|
2936
|
+
# CloudFormation operations.
|
2748
2937
|
#
|
2749
2938
|
# Valid values include:
|
2750
2939
|
#
|
2751
|
-
# * `PRIVATE`\: The
|
2752
|
-
# in which it is registered. Currently, AWS CloudFormation
|
2753
|
-
# types you register as `PRIVATE`.
|
2940
|
+
# * `PRIVATE`\: The extension is only visible and usable within the
|
2941
|
+
# account in which it is registered. Currently, AWS CloudFormation
|
2942
|
+
# marks any types you register as `PRIVATE`.
|
2754
2943
|
#
|
2755
|
-
# * `PUBLIC`\: The
|
2756
|
-
# Amazon account.
|
2944
|
+
# * `PUBLIC`\: The extension is publically visible and usable within
|
2945
|
+
# any Amazon account.
|
2757
2946
|
# @return [String]
|
2758
2947
|
#
|
2759
2948
|
# @!attribute [rw] source_url
|
2760
|
-
# The URL of the source code for the
|
2949
|
+
# The URL of the source code for the extension.
|
2761
2950
|
# @return [String]
|
2762
2951
|
#
|
2763
2952
|
# @!attribute [rw] documentation_url
|
2764
|
-
# The URL of a page providing detailed documentation for this
|
2953
|
+
# The URL of a page providing detailed documentation for this
|
2954
|
+
# extension.
|
2765
2955
|
# @return [String]
|
2766
2956
|
#
|
2767
2957
|
# @!attribute [rw] last_updated
|
2768
|
-
# When the specified
|
2958
|
+
# When the specified extension version was registered.
|
2769
2959
|
# @return [Time]
|
2770
2960
|
#
|
2771
2961
|
# @!attribute [rw] time_created
|
2772
|
-
# When the specified
|
2962
|
+
# When the specified extension version was registered.
|
2773
2963
|
# @return [Time]
|
2774
2964
|
#
|
2775
2965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeTypeOutput AWS API Documentation
|
@@ -2818,23 +3008,23 @@ module Aws::CloudFormation
|
|
2818
3008
|
end
|
2819
3009
|
|
2820
3010
|
# @!attribute [rw] progress_status
|
2821
|
-
# The current status of the
|
3011
|
+
# The current status of the extension registration request.
|
2822
3012
|
# @return [String]
|
2823
3013
|
#
|
2824
3014
|
# @!attribute [rw] description
|
2825
|
-
# The description of the
|
3015
|
+
# The description of the extension registration request.
|
2826
3016
|
# @return [String]
|
2827
3017
|
#
|
2828
3018
|
# @!attribute [rw] type_arn
|
2829
|
-
# The Amazon Resource Name (ARN) of the
|
3019
|
+
# The Amazon Resource Name (ARN) of the extension being registered.
|
2830
3020
|
#
|
2831
3021
|
# For registration requests with a `ProgressStatus` of other than
|
2832
3022
|
# `COMPLETE`, this will be `null`.
|
2833
3023
|
# @return [String]
|
2834
3024
|
#
|
2835
3025
|
# @!attribute [rw] type_version_arn
|
2836
|
-
# The Amazon Resource Name (ARN) of this specific version of the
|
2837
|
-
# being registered.
|
3026
|
+
# The Amazon Resource Name (ARN) of this specific version of the
|
3027
|
+
# extension being registered.
|
2838
3028
|
#
|
2839
3029
|
# For registration requests with a `ProgressStatus` of other than
|
2840
3030
|
# `COMPLETE`, this will be `null`.
|
@@ -2939,6 +3129,7 @@ module Aws::CloudFormation
|
|
2939
3129
|
# {
|
2940
3130
|
# stack_set_name: "StackSetNameOrId", # required
|
2941
3131
|
# operation_preferences: {
|
3132
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
2942
3133
|
# region_order: ["Region"],
|
2943
3134
|
# failure_tolerance_count: 1,
|
2944
3135
|
# failure_tolerance_percentage: 1,
|
@@ -2946,6 +3137,7 @@ module Aws::CloudFormation
|
|
2946
3137
|
# max_concurrent_percentage: 1,
|
2947
3138
|
# },
|
2948
3139
|
# operation_id: "ClientRequestToken",
|
3140
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2949
3141
|
# }
|
2950
3142
|
#
|
2951
3143
|
# @!attribute [rw] stack_set_name
|
@@ -2972,12 +3164,36 @@ module Aws::CloudFormation
|
|
2972
3164
|
# not need to pass this option.
|
2973
3165
|
# @return [String]
|
2974
3166
|
#
|
3167
|
+
# @!attribute [rw] call_as
|
3168
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
3169
|
+
# an account administrator in the organization's management account
|
3170
|
+
# or as a delegated administrator in a member account.
|
3171
|
+
#
|
3172
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3173
|
+
# self-managed permissions.
|
3174
|
+
#
|
3175
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3176
|
+
#
|
3177
|
+
# * If you are signed in to a delegated administrator account, specify
|
3178
|
+
# `DELEGATED_ADMIN`.
|
3179
|
+
#
|
3180
|
+
# Your AWS account must be registered as a delegated administrator
|
3181
|
+
# in the management account. For more information, see [Register a
|
3182
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
3183
|
+
# Guide*.
|
3184
|
+
#
|
3185
|
+
#
|
3186
|
+
#
|
3187
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3188
|
+
# @return [String]
|
3189
|
+
#
|
2975
3190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DetectStackSetDriftInput AWS API Documentation
|
2976
3191
|
#
|
2977
3192
|
class DetectStackSetDriftInput < Struct.new(
|
2978
3193
|
:stack_set_name,
|
2979
3194
|
:operation_preferences,
|
2980
|
-
:operation_id
|
3195
|
+
:operation_id,
|
3196
|
+
:call_as)
|
2981
3197
|
SENSITIVE = []
|
2982
3198
|
include Aws::Structure
|
2983
3199
|
end
|
@@ -3030,9 +3246,9 @@ module Aws::CloudFormation
|
|
3030
3246
|
#
|
3031
3247
|
# @!attribute [rw] template_url
|
3032
3248
|
# Location of file containing the template body. The URL must point to
|
3033
|
-
# a template that is located in an Amazon S3 bucket
|
3034
|
-
# information, go to [Template Anatomy][1]
|
3035
|
-
# User Guide.
|
3249
|
+
# a template that is located in an Amazon S3 bucket or a Systems
|
3250
|
+
# Manager document. For more information, go to [Template Anatomy][1]
|
3251
|
+
# in the AWS CloudFormation User Guide.
|
3036
3252
|
#
|
3037
3253
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
3038
3254
|
# are passed, only `TemplateBody` is used.
|
@@ -3299,8 +3515,9 @@ module Aws::CloudFormation
|
|
3299
3515
|
# @!attribute [rw] template_url
|
3300
3516
|
# Location of file containing the template body. The URL must point to
|
3301
3517
|
# a template (max size: 460,800 bytes) that is located in an Amazon S3
|
3302
|
-
# bucket. For more information about
|
3303
|
-
# Anatomy][1] in the AWS CloudFormation User
|
3518
|
+
# bucket or a Systems Manager document. For more information about
|
3519
|
+
# templates, see [Template Anatomy][1] in the AWS CloudFormation User
|
3520
|
+
# Guide.
|
3304
3521
|
#
|
3305
3522
|
# Conditional: You must specify only one of the following parameters:
|
3306
3523
|
# `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
|
@@ -3612,6 +3829,7 @@ module Aws::CloudFormation
|
|
3612
3829
|
# ],
|
3613
3830
|
# stack_instance_account: "Account",
|
3614
3831
|
# stack_instance_region: "Region",
|
3832
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3615
3833
|
# }
|
3616
3834
|
#
|
3617
3835
|
# @!attribute [rw] stack_set_name
|
@@ -3648,6 +3866,29 @@ module Aws::CloudFormation
|
|
3648
3866
|
# The name of the Region where you want to list stack instances.
|
3649
3867
|
# @return [String]
|
3650
3868
|
#
|
3869
|
+
# @!attribute [rw] call_as
|
3870
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
3871
|
+
# an account administrator in the organization's management account
|
3872
|
+
# or as a delegated administrator in a member account.
|
3873
|
+
#
|
3874
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
3875
|
+
# self-managed permissions.
|
3876
|
+
#
|
3877
|
+
# * If you are signed in to the management account, specify `SELF`.
|
3878
|
+
#
|
3879
|
+
# * If you are signed in to a delegated administrator account, specify
|
3880
|
+
# `DELEGATED_ADMIN`.
|
3881
|
+
#
|
3882
|
+
# Your AWS account must be registered as a delegated administrator
|
3883
|
+
# in the management account. For more information, see [Register a
|
3884
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
3885
|
+
# Guide*.
|
3886
|
+
#
|
3887
|
+
#
|
3888
|
+
#
|
3889
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
3890
|
+
# @return [String]
|
3891
|
+
#
|
3651
3892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstancesInput AWS API Documentation
|
3652
3893
|
#
|
3653
3894
|
class ListStackInstancesInput < Struct.new(
|
@@ -3656,7 +3897,8 @@ module Aws::CloudFormation
|
|
3656
3897
|
:max_results,
|
3657
3898
|
:filters,
|
3658
3899
|
:stack_instance_account,
|
3659
|
-
:stack_instance_region
|
3900
|
+
:stack_instance_region,
|
3901
|
+
:call_as)
|
3660
3902
|
SENSITIVE = []
|
3661
3903
|
include Aws::Structure
|
3662
3904
|
end
|
@@ -3748,6 +3990,7 @@ module Aws::CloudFormation
|
|
3748
3990
|
# operation_id: "ClientRequestToken", # required
|
3749
3991
|
# next_token: "NextToken",
|
3750
3992
|
# max_results: 1,
|
3993
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3751
3994
|
# }
|
3752
3995
|
#
|
3753
3996
|
# @!attribute [rw] stack_set_name
|
@@ -3776,13 +4019,37 @@ module Aws::CloudFormation
|
|
3776
4019
|
# request parameter to get the next set of results.
|
3777
4020
|
# @return [Integer]
|
3778
4021
|
#
|
4022
|
+
# @!attribute [rw] call_as
|
4023
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
4024
|
+
# an account administrator in the organization's management account
|
4025
|
+
# or as a delegated administrator in a member account.
|
4026
|
+
#
|
4027
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
4028
|
+
# self-managed permissions.
|
4029
|
+
#
|
4030
|
+
# * If you are signed in to the management account, specify `SELF`.
|
4031
|
+
#
|
4032
|
+
# * If you are signed in to a delegated administrator account, specify
|
4033
|
+
# `DELEGATED_ADMIN`.
|
4034
|
+
#
|
4035
|
+
# Your AWS account must be registered as a delegated administrator
|
4036
|
+
# in the management account. For more information, see [Register a
|
4037
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
4038
|
+
# Guide*.
|
4039
|
+
#
|
4040
|
+
#
|
4041
|
+
#
|
4042
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
4043
|
+
# @return [String]
|
4044
|
+
#
|
3779
4045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationResultsInput AWS API Documentation
|
3780
4046
|
#
|
3781
4047
|
class ListStackSetOperationResultsInput < Struct.new(
|
3782
4048
|
:stack_set_name,
|
3783
4049
|
:operation_id,
|
3784
4050
|
:next_token,
|
3785
|
-
:max_results
|
4051
|
+
:max_results,
|
4052
|
+
:call_as)
|
3786
4053
|
SENSITIVE = []
|
3787
4054
|
include Aws::Structure
|
3788
4055
|
end
|
@@ -3817,6 +4084,7 @@ module Aws::CloudFormation
|
|
3817
4084
|
# stack_set_name: "StackSetName", # required
|
3818
4085
|
# next_token: "NextToken",
|
3819
4086
|
# max_results: 1,
|
4087
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3820
4088
|
# }
|
3821
4089
|
#
|
3822
4090
|
# @!attribute [rw] stack_set_name
|
@@ -3841,12 +4109,36 @@ module Aws::CloudFormation
|
|
3841
4109
|
# request parameter to get the next set of results.
|
3842
4110
|
# @return [Integer]
|
3843
4111
|
#
|
4112
|
+
# @!attribute [rw] call_as
|
4113
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
4114
|
+
# an account administrator in the organization's management account
|
4115
|
+
# or as a delegated administrator in a member account.
|
4116
|
+
#
|
4117
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
4118
|
+
# self-managed permissions.
|
4119
|
+
#
|
4120
|
+
# * If you are signed in to the management account, specify `SELF`.
|
4121
|
+
#
|
4122
|
+
# * If you are signed in to a delegated administrator account, specify
|
4123
|
+
# `DELEGATED_ADMIN`.
|
4124
|
+
#
|
4125
|
+
# Your AWS account must be registered as a delegated administrator
|
4126
|
+
# in the management account. For more information, see [Register a
|
4127
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
4128
|
+
# Guide*.
|
4129
|
+
#
|
4130
|
+
#
|
4131
|
+
#
|
4132
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
4133
|
+
# @return [String]
|
4134
|
+
#
|
3844
4135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationsInput AWS API Documentation
|
3845
4136
|
#
|
3846
4137
|
class ListStackSetOperationsInput < Struct.new(
|
3847
4138
|
:stack_set_name,
|
3848
4139
|
:next_token,
|
3849
|
-
:max_results
|
4140
|
+
:max_results,
|
4141
|
+
:call_as)
|
3850
4142
|
SENSITIVE = []
|
3851
4143
|
include Aws::Structure
|
3852
4144
|
end
|
@@ -3880,6 +4172,7 @@ module Aws::CloudFormation
|
|
3880
4172
|
# next_token: "NextToken",
|
3881
4173
|
# max_results: 1,
|
3882
4174
|
# status: "ACTIVE", # accepts ACTIVE, DELETED
|
4175
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
3883
4176
|
# }
|
3884
4177
|
#
|
3885
4178
|
# @!attribute [rw] next_token
|
@@ -3903,12 +4196,36 @@ module Aws::CloudFormation
|
|
3903
4196
|
# information about.
|
3904
4197
|
# @return [String]
|
3905
4198
|
#
|
4199
|
+
# @!attribute [rw] call_as
|
4200
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
4201
|
+
# an account administrator in the management account or as a delegated
|
4202
|
+
# administrator in a member account.
|
4203
|
+
#
|
4204
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
4205
|
+
# self-managed permissions.
|
4206
|
+
#
|
4207
|
+
# * If you are signed in to the management account, specify `SELF`.
|
4208
|
+
#
|
4209
|
+
# * If you are signed in to a delegated administrator account, specify
|
4210
|
+
# `DELEGATED_ADMIN`.
|
4211
|
+
#
|
4212
|
+
# Your AWS account must be registered as a delegated administrator
|
4213
|
+
# in the management account. For more information, see [Register a
|
4214
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
4215
|
+
# Guide*.
|
4216
|
+
#
|
4217
|
+
#
|
4218
|
+
#
|
4219
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
4220
|
+
# @return [String]
|
4221
|
+
#
|
3906
4222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetsInput AWS API Documentation
|
3907
4223
|
#
|
3908
4224
|
class ListStackSetsInput < Struct.new(
|
3909
4225
|
:next_token,
|
3910
4226
|
:max_results,
|
3911
|
-
:status
|
4227
|
+
:status,
|
4228
|
+
:call_as)
|
3912
4229
|
SENSITIVE = []
|
3913
4230
|
include Aws::Structure
|
3914
4231
|
end
|
@@ -3992,7 +4309,7 @@ module Aws::CloudFormation
|
|
3992
4309
|
# data as a hash:
|
3993
4310
|
#
|
3994
4311
|
# {
|
3995
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4312
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
3996
4313
|
# type_name: "TypeName",
|
3997
4314
|
# type_arn: "TypeArn",
|
3998
4315
|
# registration_status_filter: "COMPLETE", # accepts COMPLETE, IN_PROGRESS, FAILED
|
@@ -4001,30 +4318,28 @@ module Aws::CloudFormation
|
|
4001
4318
|
# }
|
4002
4319
|
#
|
4003
4320
|
# @!attribute [rw] type
|
4004
|
-
# The kind of
|
4005
|
-
#
|
4006
|
-
# Currently the only valid value is `RESOURCE`.
|
4321
|
+
# The kind of extension.
|
4007
4322
|
#
|
4008
4323
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
4009
4324
|
# `Arn`.
|
4010
4325
|
# @return [String]
|
4011
4326
|
#
|
4012
4327
|
# @!attribute [rw] type_name
|
4013
|
-
# The name of the
|
4328
|
+
# The name of the extension.
|
4014
4329
|
#
|
4015
4330
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
4016
4331
|
# `Arn`.
|
4017
4332
|
# @return [String]
|
4018
4333
|
#
|
4019
4334
|
# @!attribute [rw] type_arn
|
4020
|
-
# The Amazon Resource Name (ARN) of the
|
4335
|
+
# The Amazon Resource Name (ARN) of the extension.
|
4021
4336
|
#
|
4022
4337
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
4023
4338
|
# `Arn`.
|
4024
4339
|
# @return [String]
|
4025
4340
|
#
|
4026
4341
|
# @!attribute [rw] registration_status_filter
|
4027
|
-
# The current status of the
|
4342
|
+
# The current status of the extension registration request.
|
4028
4343
|
#
|
4029
4344
|
# The default is `IN_PROGRESS`.
|
4030
4345
|
# @return [String]
|
@@ -4059,7 +4374,7 @@ module Aws::CloudFormation
|
|
4059
4374
|
end
|
4060
4375
|
|
4061
4376
|
# @!attribute [rw] registration_token_list
|
4062
|
-
# A list of
|
4377
|
+
# A list of extension registration tokens.
|
4063
4378
|
#
|
4064
4379
|
# Use ` DescribeTypeRegistration ` to return detailed information
|
4065
4380
|
# about a type registration request.
|
@@ -4086,7 +4401,7 @@ module Aws::CloudFormation
|
|
4086
4401
|
# data as a hash:
|
4087
4402
|
#
|
4088
4403
|
# {
|
4089
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4404
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4090
4405
|
# type_name: "TypeName",
|
4091
4406
|
# arn: "PrivateTypeArn",
|
4092
4407
|
# max_results: 1,
|
@@ -4095,23 +4410,22 @@ module Aws::CloudFormation
|
|
4095
4410
|
# }
|
4096
4411
|
#
|
4097
4412
|
# @!attribute [rw] type
|
4098
|
-
# The kind of the
|
4099
|
-
#
|
4100
|
-
# Currently the only valid value is `RESOURCE`.
|
4413
|
+
# The kind of the extension.
|
4101
4414
|
#
|
4102
4415
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
4103
4416
|
# `Arn`.
|
4104
4417
|
# @return [String]
|
4105
4418
|
#
|
4106
4419
|
# @!attribute [rw] type_name
|
4107
|
-
# The name of the
|
4420
|
+
# The name of the extension for which you want version summary
|
4421
|
+
# information.
|
4108
4422
|
#
|
4109
4423
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
4110
4424
|
# `Arn`.
|
4111
4425
|
# @return [String]
|
4112
4426
|
#
|
4113
4427
|
# @!attribute [rw] arn
|
4114
|
-
# The Amazon Resource Name (ARN) of the
|
4428
|
+
# The Amazon Resource Name (ARN) of the extension for which you want
|
4115
4429
|
# version summary information.
|
4116
4430
|
#
|
4117
4431
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
@@ -4135,17 +4449,17 @@ module Aws::CloudFormation
|
|
4135
4449
|
# @return [String]
|
4136
4450
|
#
|
4137
4451
|
# @!attribute [rw] deprecated_status
|
4138
|
-
# The deprecation status of the
|
4139
|
-
# summary information about.
|
4452
|
+
# The deprecation status of the extension versions that you want to
|
4453
|
+
# get summary information about.
|
4140
4454
|
#
|
4141
4455
|
# Valid values include:
|
4142
4456
|
#
|
4143
|
-
# * `LIVE`\: The
|
4457
|
+
# * `LIVE`\: The extension version is registered and can be used in
|
4144
4458
|
# CloudFormation operations, dependent on its provisioning behavior
|
4145
4459
|
# and visibility scope.
|
4146
4460
|
#
|
4147
|
-
# * `DEPRECATED`\: The
|
4148
|
-
# longer be used in CloudFormation operations.
|
4461
|
+
# * `DEPRECATED`\: The extension version has been deregistered and can
|
4462
|
+
# no longer be used in CloudFormation operations.
|
4149
4463
|
#
|
4150
4464
|
# The default is `LIVE`.
|
4151
4465
|
# @return [String]
|
@@ -4165,7 +4479,7 @@ module Aws::CloudFormation
|
|
4165
4479
|
|
4166
4480
|
# @!attribute [rw] type_version_summaries
|
4167
4481
|
# A list of `TypeVersionSummary` structures that contain information
|
4168
|
-
# about the specified
|
4482
|
+
# about the specified extension's versions.
|
4169
4483
|
# @return [Array<Types::TypeVersionSummary>]
|
4170
4484
|
#
|
4171
4485
|
# @!attribute [rw] next_token
|
@@ -4192,22 +4506,23 @@ module Aws::CloudFormation
|
|
4192
4506
|
# visibility: "PUBLIC", # accepts PUBLIC, PRIVATE
|
4193
4507
|
# provisioning_type: "NON_PROVISIONABLE", # accepts NON_PROVISIONABLE, IMMUTABLE, FULLY_MUTABLE
|
4194
4508
|
# deprecated_status: "LIVE", # accepts LIVE, DEPRECATED
|
4509
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4195
4510
|
# max_results: 1,
|
4196
4511
|
# next_token: "NextToken",
|
4197
4512
|
# }
|
4198
4513
|
#
|
4199
4514
|
# @!attribute [rw] visibility
|
4200
|
-
# The scope at which the
|
4201
|
-
# operations.
|
4515
|
+
# The scope at which the extension is visible and usable in
|
4516
|
+
# CloudFormation operations.
|
4202
4517
|
#
|
4203
4518
|
# Valid values include:
|
4204
4519
|
#
|
4205
|
-
# * `PRIVATE`\: The
|
4206
|
-
# in which it is registered. Currently, AWS CloudFormation
|
4207
|
-
#
|
4520
|
+
# * `PRIVATE`\: The extension is only visible and usable within the
|
4521
|
+
# account in which it is registered. Currently, AWS CloudFormation
|
4522
|
+
# marks any extension you create as `PRIVATE`.
|
4208
4523
|
#
|
4209
|
-
# * `PUBLIC`\: The
|
4210
|
-
# Amazon account.
|
4524
|
+
# * `PUBLIC`\: The extension is publically visible and usable within
|
4525
|
+
# any Amazon account.
|
4211
4526
|
#
|
4212
4527
|
# The default is `PRIVATE`.
|
4213
4528
|
# @return [String]
|
@@ -4219,28 +4534,32 @@ module Aws::CloudFormation
|
|
4219
4534
|
#
|
4220
4535
|
# Valid values include:
|
4221
4536
|
#
|
4222
|
-
# * `FULLY_MUTABLE`\: The
|
4223
|
-
# updates to the
|
4537
|
+
# * `FULLY_MUTABLE`\: The extension includes an update handler to
|
4538
|
+
# process updates to the extension during stack update operations.
|
4224
4539
|
#
|
4225
|
-
# * `IMMUTABLE`\: The
|
4226
|
-
#
|
4227
|
-
# update operations.
|
4540
|
+
# * `IMMUTABLE`\: The extension does not include an update handler, so
|
4541
|
+
# the extension cannot be updated and must instead be replaced
|
4542
|
+
# during stack update operations.
|
4228
4543
|
#
|
4229
|
-
# * `NON_PROVISIONABLE`\: The
|
4230
|
-
# delete handlers, and therefore cannot actually be provisioned.
|
4544
|
+
# * `NON_PROVISIONABLE`\: The extension does not include create, read,
|
4545
|
+
# and delete handlers, and therefore cannot actually be provisioned.
|
4231
4546
|
# @return [String]
|
4232
4547
|
#
|
4233
4548
|
# @!attribute [rw] deprecated_status
|
4234
|
-
# The deprecation status of the
|
4549
|
+
# The deprecation status of the extension that you want to get summary
|
4235
4550
|
# information about.
|
4236
4551
|
#
|
4237
4552
|
# Valid values include:
|
4238
4553
|
#
|
4239
|
-
# * `LIVE`\: The
|
4554
|
+
# * `LIVE`\: The extension is registered for use in CloudFormation
|
4240
4555
|
# operations.
|
4241
4556
|
#
|
4242
|
-
# * `DEPRECATED`\: The
|
4243
|
-
# used in CloudFormation operations.
|
4557
|
+
# * `DEPRECATED`\: The extension has been deregistered and can no
|
4558
|
+
# longer be used in CloudFormation operations.
|
4559
|
+
# @return [String]
|
4560
|
+
#
|
4561
|
+
# @!attribute [rw] type
|
4562
|
+
# The type of extension.
|
4244
4563
|
# @return [String]
|
4245
4564
|
#
|
4246
4565
|
# @!attribute [rw] max_results
|
@@ -4265,6 +4584,7 @@ module Aws::CloudFormation
|
|
4265
4584
|
:visibility,
|
4266
4585
|
:provisioning_type,
|
4267
4586
|
:deprecated_status,
|
4587
|
+
:type,
|
4268
4588
|
:max_results,
|
4269
4589
|
:next_token)
|
4270
4590
|
SENSITIVE = []
|
@@ -4273,7 +4593,7 @@ module Aws::CloudFormation
|
|
4273
4593
|
|
4274
4594
|
# @!attribute [rw] type_summaries
|
4275
4595
|
# A list of `TypeSummary` structures that contain information about
|
4276
|
-
# the specified
|
4596
|
+
# the specified extensions.
|
4277
4597
|
# @return [Array<Types::TypeSummary>]
|
4278
4598
|
#
|
4279
4599
|
# @!attribute [rw] next_token
|
@@ -4322,6 +4642,51 @@ module Aws::CloudFormation
|
|
4322
4642
|
include Aws::Structure
|
4323
4643
|
end
|
4324
4644
|
|
4645
|
+
# Contains information about the module from which the resource was
|
4646
|
+
# created, if the resource was created from a module included in the
|
4647
|
+
# stack template.
|
4648
|
+
#
|
4649
|
+
# For more information on modules, see [Using modules to encapsulate and
|
4650
|
+
# reuse resource
|
4651
|
+
# configurations](AWSCloudFormation/latest/UserGuide/modules.html) in
|
4652
|
+
# the *CloudFormation User Guide*.
|
4653
|
+
#
|
4654
|
+
# @!attribute [rw] type_hierarchy
|
4655
|
+
# A concantenated list of the the module type or types containing the
|
4656
|
+
# resource. Module types are listed starting with the inner-most
|
4657
|
+
# nested module, and separated by `/`.
|
4658
|
+
#
|
4659
|
+
# In the following example, the resource was created from a module of
|
4660
|
+
# type `AWS::First::Example::MODULE`, that is nested inside a parent
|
4661
|
+
# module of type `AWS::Second::Example::MODULE`.
|
4662
|
+
#
|
4663
|
+
# `AWS::First::Example::MODULE/AWS::Second::Example::MODULE`
|
4664
|
+
# @return [String]
|
4665
|
+
#
|
4666
|
+
# @!attribute [rw] logical_id_hierarchy
|
4667
|
+
# A concantenated list of the logical IDs of the module or modules
|
4668
|
+
# containing the resource. Modules are listed starting with the
|
4669
|
+
# inner-most nested module, and separated by `/`.
|
4670
|
+
#
|
4671
|
+
# In the following example, the resource was created from a module,
|
4672
|
+
# `moduleA`, that is nested inside a parent module, `moduleB`.
|
4673
|
+
#
|
4674
|
+
# `moduleA/moduleB`
|
4675
|
+
#
|
4676
|
+
# For more information, see [Referencing resources in a
|
4677
|
+
# module](AWSCloudFormation/latest/UserGuide/modules.html#module-ref-resources)
|
4678
|
+
# in the *CloudFormation User Guide*.
|
4679
|
+
# @return [String]
|
4680
|
+
#
|
4681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ModuleInfo AWS API Documentation
|
4682
|
+
#
|
4683
|
+
class ModuleInfo < Struct.new(
|
4684
|
+
:type_hierarchy,
|
4685
|
+
:logical_id_hierarchy)
|
4686
|
+
SENSITIVE = []
|
4687
|
+
include Aws::Structure
|
4688
|
+
end
|
4689
|
+
|
4325
4690
|
# The specified name is already in use.
|
4326
4691
|
#
|
4327
4692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/NameAlreadyExistsException AWS API Documentation
|
@@ -4657,7 +5022,7 @@ module Aws::CloudFormation
|
|
4657
5022
|
# data as a hash:
|
4658
5023
|
#
|
4659
5024
|
# {
|
4660
|
-
# type: "RESOURCE", # accepts RESOURCE
|
5025
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4661
5026
|
# type_name: "TypeName", # required
|
4662
5027
|
# schema_handler_package: "S3Url", # required
|
4663
5028
|
# logging_config: {
|
@@ -4669,19 +5034,17 @@ module Aws::CloudFormation
|
|
4669
5034
|
# }
|
4670
5035
|
#
|
4671
5036
|
# @!attribute [rw] type
|
4672
|
-
# The kind of
|
4673
|
-
#
|
4674
|
-
# Currently, the only valid value is `RESOURCE`.
|
5037
|
+
# The kind of extension.
|
4675
5038
|
# @return [String]
|
4676
5039
|
#
|
4677
5040
|
# @!attribute [rw] type_name
|
4678
|
-
# The name of the
|
5041
|
+
# The name of the extension being registered.
|
4679
5042
|
#
|
4680
|
-
# We recommend that
|
5043
|
+
# We recommend that extension names adhere to the following pattern:
|
4681
5044
|
# *company\_or\_organization*\::*service*\::*type*.
|
4682
5045
|
#
|
4683
5046
|
# <note markdown="1"> The following organization namespaces are reserved and cannot be
|
4684
|
-
# used in your
|
5047
|
+
# used in your extension names:
|
4685
5048
|
#
|
4686
5049
|
# * `Alexa`
|
4687
5050
|
#
|
@@ -4699,20 +5062,19 @@ module Aws::CloudFormation
|
|
4699
5062
|
# @return [String]
|
4700
5063
|
#
|
4701
5064
|
# @!attribute [rw] schema_handler_package
|
4702
|
-
# A url to the S3 bucket containing the
|
4703
|
-
# contains the
|
4704
|
-
#
|
5065
|
+
# A url to the S3 bucket containing the extension project package that
|
5066
|
+
# contains the neccessary files for the extension you want to
|
5067
|
+
# register.
|
4705
5068
|
#
|
4706
|
-
# For information on generating a schema handler package for the
|
4707
|
-
# you want to register, see [submit][1] in the
|
4708
|
-
# User Guide*.
|
5069
|
+
# For information on generating a schema handler package for the
|
5070
|
+
# extension you want to register, see [submit][1] in the
|
5071
|
+
# *CloudFormation CLI User Guide*.
|
4709
5072
|
#
|
4710
|
-
# <note markdown="1"> The user registering the
|
4711
|
-
#
|
4712
|
-
#
|
4713
|
-
#
|
4714
|
-
#
|
4715
|
-
# Management User Guide*.
|
5073
|
+
# <note markdown="1"> The user registering the extension must be able to access the
|
5074
|
+
# package in the S3 bucket. That is, the user needs to have
|
5075
|
+
# [GetObject][2] permissions for the schema handler package. For more
|
5076
|
+
# information, see [Actions, Resources, and Condition Keys for Amazon
|
5077
|
+
# S3][3] in the *AWS Identity and Access Management User Guide*.
|
4716
5078
|
#
|
4717
5079
|
# </note>
|
4718
5080
|
#
|
@@ -4724,29 +5086,28 @@ module Aws::CloudFormation
|
|
4724
5086
|
# @return [String]
|
4725
5087
|
#
|
4726
5088
|
# @!attribute [rw] logging_config
|
4727
|
-
# Specifies logging configuration information for
|
5089
|
+
# Specifies logging configuration information for an extension.
|
4728
5090
|
# @return [Types::LoggingConfig]
|
4729
5091
|
#
|
4730
5092
|
# @!attribute [rw] execution_role_arn
|
4731
5093
|
# The Amazon Resource Name (ARN) of the IAM role for CloudFormation to
|
4732
|
-
# assume when invoking the
|
4733
|
-
#
|
5094
|
+
# assume when invoking the extension. If your extension calls AWS APIs
|
5095
|
+
# in any of its handlers, you must create an <i> <a
|
4734
5096
|
# href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM
|
4735
5097
|
# execution role</a> </i> that includes the necessary permissions to
|
4736
5098
|
# call those AWS APIs, and provision that execution role in your
|
4737
|
-
# account. When CloudFormation needs to invoke the
|
4738
|
-
#
|
4739
|
-
#
|
4740
|
-
#
|
4741
|
-
# appropriate credentials.
|
5099
|
+
# account. When CloudFormation needs to invoke the extension handler,
|
5100
|
+
# CloudFormation assumes this execution role to create a temporary
|
5101
|
+
# session token, which it then passes to the extension handler,
|
5102
|
+
# thereby supplying your extension with the appropriate credentials.
|
4742
5103
|
# @return [String]
|
4743
5104
|
#
|
4744
5105
|
# @!attribute [rw] client_request_token
|
4745
5106
|
# A unique identifier that acts as an idempotency key for this
|
4746
5107
|
# registration request. Specifying a client request token prevents
|
4747
|
-
# CloudFormation from generating more than one version of
|
4748
|
-
# the same registeration request, even if the request is
|
4749
|
-
# multiple times.
|
5108
|
+
# CloudFormation from generating more than one version of an extension
|
5109
|
+
# from the same registeration request, even if the request is
|
5110
|
+
# submitted multiple times.
|
4750
5111
|
# @return [String]
|
4751
5112
|
#
|
4752
5113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RegisterTypeInput AWS API Documentation
|
@@ -4766,8 +5127,8 @@ module Aws::CloudFormation
|
|
4766
5127
|
# The identifier for this registration request.
|
4767
5128
|
#
|
4768
5129
|
# Use this registration token when calling ` DescribeTypeRegistration
|
4769
|
-
# `, which returns information about the status and IDs of the
|
4770
|
-
# registration.
|
5130
|
+
# `, which returns information about the status and IDs of the
|
5131
|
+
# extension registration.
|
4771
5132
|
# @return [String]
|
4772
5133
|
#
|
4773
5134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RegisterTypeOutput AWS API Documentation
|
@@ -4835,6 +5196,12 @@ module Aws::CloudFormation
|
|
4835
5196
|
# The change set ID of the nested change set.
|
4836
5197
|
# @return [String]
|
4837
5198
|
#
|
5199
|
+
# @!attribute [rw] module_info
|
5200
|
+
# Contains information about the module from which the resource was
|
5201
|
+
# created, if the resource was created from a module included in the
|
5202
|
+
# stack template.
|
5203
|
+
# @return [Types::ModuleInfo]
|
5204
|
+
#
|
4838
5205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceChange AWS API Documentation
|
4839
5206
|
#
|
4840
5207
|
class ResourceChange < Struct.new(
|
@@ -4845,7 +5212,8 @@ module Aws::CloudFormation
|
|
4845
5212
|
:replacement,
|
4846
5213
|
:scope,
|
4847
5214
|
:details,
|
4848
|
-
:change_set_id
|
5215
|
+
:change_set_id,
|
5216
|
+
:module_info)
|
4849
5217
|
SENSITIVE = []
|
4850
5218
|
include Aws::Structure
|
4851
5219
|
end
|
@@ -5217,13 +5585,13 @@ module Aws::CloudFormation
|
|
5217
5585
|
#
|
5218
5586
|
# {
|
5219
5587
|
# arn: "PrivateTypeArn",
|
5220
|
-
# type: "RESOURCE", # accepts RESOURCE
|
5588
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
5221
5589
|
# type_name: "TypeName",
|
5222
5590
|
# version_id: "TypeVersionId",
|
5223
5591
|
# }
|
5224
5592
|
#
|
5225
5593
|
# @!attribute [rw] arn
|
5226
|
-
# The Amazon Resource Name (ARN) of the
|
5594
|
+
# The Amazon Resource Name (ARN) of the extension for which you want
|
5227
5595
|
# version summary information.
|
5228
5596
|
#
|
5229
5597
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
@@ -5231,23 +5599,23 @@ module Aws::CloudFormation
|
|
5231
5599
|
# @return [String]
|
5232
5600
|
#
|
5233
5601
|
# @!attribute [rw] type
|
5234
|
-
# The kind of
|
5602
|
+
# The kind of extension.
|
5235
5603
|
#
|
5236
5604
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
5237
5605
|
# `Arn`.
|
5238
5606
|
# @return [String]
|
5239
5607
|
#
|
5240
5608
|
# @!attribute [rw] type_name
|
5241
|
-
# The name of the
|
5609
|
+
# The name of the extension.
|
5242
5610
|
#
|
5243
5611
|
# Conditional: You must specify either `TypeName` and `Type`, or
|
5244
5612
|
# `Arn`.
|
5245
5613
|
# @return [String]
|
5246
5614
|
#
|
5247
5615
|
# @!attribute [rw] version_id
|
5248
|
-
# The ID of a specific version of the
|
5616
|
+
# The ID of a specific version of the extension. The version ID is the
|
5249
5617
|
# value at the end of the Amazon Resource Name (ARN) assigned to the
|
5250
|
-
#
|
5618
|
+
# extension version when it is registered.
|
5251
5619
|
# @return [String]
|
5252
5620
|
#
|
5253
5621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetTypeDefaultVersionInput AWS API Documentation
|
@@ -5658,7 +6026,7 @@ module Aws::CloudFormation
|
|
5658
6026
|
# @return [String]
|
5659
6027
|
#
|
5660
6028
|
# @!attribute [rw] account
|
5661
|
-
# \[
|
6029
|
+
# \[Self-managed permissions\] The name of the AWS account that the
|
5662
6030
|
# stack instance is associated with.
|
5663
6031
|
# @return [String]
|
5664
6032
|
#
|
@@ -5705,7 +6073,7 @@ module Aws::CloudFormation
|
|
5705
6073
|
# @return [String]
|
5706
6074
|
#
|
5707
6075
|
# @!attribute [rw] organizational_unit_id
|
5708
|
-
# \[
|
6076
|
+
# \[Service-managed permissions\] The organization root ID or
|
5709
6077
|
# organizational unit (OU) IDs that you specified for
|
5710
6078
|
# [DeploymentTargets][1].
|
5711
6079
|
#
|
@@ -5842,7 +6210,7 @@ module Aws::CloudFormation
|
|
5842
6210
|
# @return [String]
|
5843
6211
|
#
|
5844
6212
|
# @!attribute [rw] account
|
5845
|
-
# \[
|
6213
|
+
# \[Self-managed permissions\] The name of the AWS account that the
|
5846
6214
|
# stack instance is associated with.
|
5847
6215
|
# @return [String]
|
5848
6216
|
#
|
@@ -5884,7 +6252,7 @@ module Aws::CloudFormation
|
|
5884
6252
|
# @return [Types::StackInstanceComprehensiveStatus]
|
5885
6253
|
#
|
5886
6254
|
# @!attribute [rw] organizational_unit_id
|
5887
|
-
# \[
|
6255
|
+
# \[Service-managed permissions\] The organization root ID or
|
5888
6256
|
# organizational unit (OU) IDs that you specified for
|
5889
6257
|
# [DeploymentTargets][1].
|
5890
6258
|
#
|
@@ -5991,6 +6359,12 @@ module Aws::CloudFormation
|
|
5991
6359
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
5992
6360
|
# @return [Types::StackResourceDriftInformation]
|
5993
6361
|
#
|
6362
|
+
# @!attribute [rw] module_info
|
6363
|
+
# Contains information about the module from which the resource was
|
6364
|
+
# created, if the resource was created from a module included in the
|
6365
|
+
# stack template.
|
6366
|
+
# @return [Types::ModuleInfo]
|
6367
|
+
#
|
5994
6368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResource AWS API Documentation
|
5995
6369
|
#
|
5996
6370
|
class StackResource < Struct.new(
|
@@ -6003,7 +6377,8 @@ module Aws::CloudFormation
|
|
6003
6377
|
:resource_status,
|
6004
6378
|
:resource_status_reason,
|
6005
6379
|
:description,
|
6006
|
-
:drift_information
|
6380
|
+
:drift_information,
|
6381
|
+
:module_info)
|
6007
6382
|
SENSITIVE = []
|
6008
6383
|
include Aws::Structure
|
6009
6384
|
end
|
@@ -6074,6 +6449,12 @@ module Aws::CloudFormation
|
|
6074
6449
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
6075
6450
|
# @return [Types::StackResourceDriftInformation]
|
6076
6451
|
#
|
6452
|
+
# @!attribute [rw] module_info
|
6453
|
+
# Contains information about the module from which the resource was
|
6454
|
+
# created, if the resource was created from a module included in the
|
6455
|
+
# stack template.
|
6456
|
+
# @return [Types::ModuleInfo]
|
6457
|
+
#
|
6077
6458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceDetail AWS API Documentation
|
6078
6459
|
#
|
6079
6460
|
class StackResourceDetail < Struct.new(
|
@@ -6087,7 +6468,8 @@ module Aws::CloudFormation
|
|
6087
6468
|
:resource_status_reason,
|
6088
6469
|
:description,
|
6089
6470
|
:metadata,
|
6090
|
-
:drift_information
|
6471
|
+
:drift_information,
|
6472
|
+
:module_info)
|
6091
6473
|
SENSITIVE = []
|
6092
6474
|
include Aws::Structure
|
6093
6475
|
end
|
@@ -6183,6 +6565,12 @@ module Aws::CloudFormation
|
|
6183
6565
|
# stack resource.
|
6184
6566
|
# @return [Time]
|
6185
6567
|
#
|
6568
|
+
# @!attribute [rw] module_info
|
6569
|
+
# Contains information about the module from which the resource was
|
6570
|
+
# created, if the resource was created from a module included in the
|
6571
|
+
# stack template.
|
6572
|
+
# @return [Types::ModuleInfo]
|
6573
|
+
#
|
6186
6574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceDrift AWS API Documentation
|
6187
6575
|
#
|
6188
6576
|
class StackResourceDrift < Struct.new(
|
@@ -6195,7 +6583,8 @@ module Aws::CloudFormation
|
|
6195
6583
|
:actual_properties,
|
6196
6584
|
:property_differences,
|
6197
6585
|
:stack_resource_drift_status,
|
6198
|
-
:timestamp
|
6586
|
+
:timestamp,
|
6587
|
+
:module_info)
|
6199
6588
|
SENSITIVE = []
|
6200
6589
|
include Aws::Structure
|
6201
6590
|
end
|
@@ -6334,6 +6723,12 @@ module Aws::CloudFormation
|
|
6334
6723
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
6335
6724
|
# @return [Types::StackResourceDriftInformationSummary]
|
6336
6725
|
#
|
6726
|
+
# @!attribute [rw] module_info
|
6727
|
+
# Contains information about the module from which the resource was
|
6728
|
+
# created, if the resource was created from a module included in the
|
6729
|
+
# stack template.
|
6730
|
+
# @return [Types::ModuleInfo]
|
6731
|
+
#
|
6337
6732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceSummary AWS API Documentation
|
6338
6733
|
#
|
6339
6734
|
class StackResourceSummary < Struct.new(
|
@@ -6343,7 +6738,8 @@ module Aws::CloudFormation
|
|
6343
6738
|
:last_updated_timestamp,
|
6344
6739
|
:resource_status,
|
6345
6740
|
:resource_status_reason,
|
6346
|
-
:drift_information
|
6741
|
+
:drift_information,
|
6742
|
+
:module_info)
|
6347
6743
|
SENSITIVE = []
|
6348
6744
|
include Aws::Structure
|
6349
6745
|
end
|
@@ -6433,7 +6829,7 @@ module Aws::CloudFormation
|
|
6433
6829
|
# @return [Types::StackSetDriftDetectionDetails]
|
6434
6830
|
#
|
6435
6831
|
# @!attribute [rw] auto_deployment
|
6436
|
-
# \[
|
6832
|
+
# \[Service-managed permissions\] Describes whether StackSets
|
6437
6833
|
# automatically deploys to AWS Organizations accounts that are added
|
6438
6834
|
# to a target organization or organizational unit (OU).
|
6439
6835
|
# @return [Types::AutoDeployment]
|
@@ -6459,7 +6855,7 @@ module Aws::CloudFormation
|
|
6459
6855
|
# @return [String]
|
6460
6856
|
#
|
6461
6857
|
# @!attribute [rw] organizational_unit_ids
|
6462
|
-
# \[
|
6858
|
+
# \[Service-managed permissions\] The organization root ID or
|
6463
6859
|
# organizational unit (OU) IDs that you specified for
|
6464
6860
|
# [DeploymentTargets][1].
|
6465
6861
|
#
|
@@ -6647,7 +7043,7 @@ module Aws::CloudFormation
|
|
6647
7043
|
# to `FAILED`, and AWS CloudFormation cancels the operation in any
|
6648
7044
|
# remaining Regions.
|
6649
7045
|
#
|
6650
|
-
# * `QUEUED`\: \[
|
7046
|
+
# * `QUEUED`\: \[Service-managed permissions\] For automatic
|
6651
7047
|
# deployments that require a sequence of operations, the operation
|
6652
7048
|
# is queued to be performed. For more information, see the [stack
|
6653
7049
|
# set operation status codes][1] in the AWS CloudFormation User
|
@@ -6720,7 +7116,7 @@ module Aws::CloudFormation
|
|
6720
7116
|
# @return [Time]
|
6721
7117
|
#
|
6722
7118
|
# @!attribute [rw] deployment_targets
|
6723
|
-
# \[
|
7119
|
+
# \[Service-managed permissions\] The AWS Organizations accounts
|
6724
7120
|
# affected by the stack operation.
|
6725
7121
|
# @return [Types::DeploymentTargets]
|
6726
7122
|
#
|
@@ -6773,6 +7169,7 @@ module Aws::CloudFormation
|
|
6773
7169
|
# data as a hash:
|
6774
7170
|
#
|
6775
7171
|
# {
|
7172
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
6776
7173
|
# region_order: ["Region"],
|
6777
7174
|
# failure_tolerance_count: 1,
|
6778
7175
|
# failure_tolerance_percentage: 1,
|
@@ -6780,6 +7177,9 @@ module Aws::CloudFormation
|
|
6780
7177
|
# max_concurrent_percentage: 1,
|
6781
7178
|
# }
|
6782
7179
|
#
|
7180
|
+
# @!attribute [rw] region_concurrency_type
|
7181
|
+
# @return [String]
|
7182
|
+
#
|
6783
7183
|
# @!attribute [rw] region_order
|
6784
7184
|
# The order of the Regions in where you want to perform the stack
|
6785
7185
|
# operation.
|
@@ -6846,6 +7246,7 @@ module Aws::CloudFormation
|
|
6846
7246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationPreferences AWS API Documentation
|
6847
7247
|
#
|
6848
7248
|
class StackSetOperationPreferences < Struct.new(
|
7249
|
+
:region_concurrency_type,
|
6849
7250
|
:region_order,
|
6850
7251
|
:failure_tolerance_count,
|
6851
7252
|
:failure_tolerance_percentage,
|
@@ -6859,7 +7260,7 @@ module Aws::CloudFormation
|
|
6859
7260
|
# results for a given account in a given Region.
|
6860
7261
|
#
|
6861
7262
|
# @!attribute [rw] account
|
6862
|
-
# \[
|
7263
|
+
# \[Self-managed permissions\] The name of the AWS account for this
|
6863
7264
|
# operation result.
|
6864
7265
|
# @return [String]
|
6865
7266
|
#
|
@@ -6904,7 +7305,7 @@ module Aws::CloudFormation
|
|
6904
7305
|
# @return [Types::AccountGateResult]
|
6905
7306
|
#
|
6906
7307
|
# @!attribute [rw] organizational_unit_id
|
6907
|
-
# \[
|
7308
|
+
# \[Service-managed permissions\] The organization root ID or
|
6908
7309
|
# organizational unit (OU) IDs that you specified for
|
6909
7310
|
# [DeploymentTargets][1].
|
6910
7311
|
#
|
@@ -6953,7 +7354,7 @@ module Aws::CloudFormation
|
|
6953
7354
|
# to `FAILED`, and AWS CloudFormation cancels the operation in any
|
6954
7355
|
# remaining Regions.
|
6955
7356
|
#
|
6956
|
-
# * `QUEUED`\: \[
|
7357
|
+
# * `QUEUED`\: \[Service-managed permissions\] For automatic
|
6957
7358
|
# deployments that require a sequence of operations, the operation
|
6958
7359
|
# is queued to be performed. For more information, see the [stack
|
6959
7360
|
# set operation status codes][1] in the AWS CloudFormation User
|
@@ -7024,7 +7425,7 @@ module Aws::CloudFormation
|
|
7024
7425
|
# @return [String]
|
7025
7426
|
#
|
7026
7427
|
# @!attribute [rw] auto_deployment
|
7027
|
-
# \[
|
7428
|
+
# \[Service-managed permissions\] Describes whether StackSets
|
7028
7429
|
# automatically deploys to AWS Organizations accounts that are added
|
7029
7430
|
# to a target organizational unit (OU).
|
7030
7431
|
# @return [Types::AutoDeployment]
|
@@ -7197,6 +7598,7 @@ module Aws::CloudFormation
|
|
7197
7598
|
# {
|
7198
7599
|
# stack_set_name: "StackSetName", # required
|
7199
7600
|
# operation_id: "ClientRequestToken", # required
|
7601
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
7200
7602
|
# }
|
7201
7603
|
#
|
7202
7604
|
# @!attribute [rw] stack_set_name
|
@@ -7208,11 +7610,35 @@ module Aws::CloudFormation
|
|
7208
7610
|
# The ID of the stack operation.
|
7209
7611
|
# @return [String]
|
7210
7612
|
#
|
7613
|
+
# @!attribute [rw] call_as
|
7614
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
7615
|
+
# an account administrator in the organization's management account
|
7616
|
+
# or as a delegated administrator in a member account.
|
7617
|
+
#
|
7618
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
7619
|
+
# self-managed permissions.
|
7620
|
+
#
|
7621
|
+
# * If you are signed in to the management account, specify `SELF`.
|
7622
|
+
#
|
7623
|
+
# * If you are signed in to a delegated administrator account, specify
|
7624
|
+
# `DELEGATED_ADMIN`.
|
7625
|
+
#
|
7626
|
+
# Your AWS account must be registered as a delegated administrator
|
7627
|
+
# in the management account. For more information, see [Register a
|
7628
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
7629
|
+
# Guide*.
|
7630
|
+
#
|
7631
|
+
#
|
7632
|
+
#
|
7633
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
7634
|
+
# @return [String]
|
7635
|
+
#
|
7211
7636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StopStackSetOperationInput AWS API Documentation
|
7212
7637
|
#
|
7213
7638
|
class StopStackSetOperationInput < Struct.new(
|
7214
7639
|
:stack_set_name,
|
7215
|
-
:operation_id
|
7640
|
+
:operation_id,
|
7641
|
+
:call_as)
|
7216
7642
|
SENSITIVE = []
|
7217
7643
|
include Aws::Structure
|
7218
7644
|
end
|
@@ -7447,9 +7873,9 @@ module Aws::CloudFormation
|
|
7447
7873
|
#
|
7448
7874
|
# @!attribute [rw] template_url
|
7449
7875
|
# Location of file containing the template body. The URL must point to
|
7450
|
-
# a template that is located in an Amazon S3 bucket
|
7451
|
-
# information, go to [Template Anatomy][1]
|
7452
|
-
# User Guide.
|
7876
|
+
# a template that is located in an Amazon S3 bucket or a Systems
|
7877
|
+
# Manager document. For more information, go to [Template Anatomy][1]
|
7878
|
+
# in the AWS CloudFormation User Guide.
|
7453
7879
|
#
|
7454
7880
|
# Conditional: You must specify only one of the following parameters:
|
7455
7881
|
# `TemplateBody`, `TemplateURL`, or set the `UsePreviousTemplate` to
|
@@ -7724,6 +8150,7 @@ module Aws::CloudFormation
|
|
7724
8150
|
# accounts: ["Account"],
|
7725
8151
|
# deployment_targets: {
|
7726
8152
|
# accounts: ["Account"],
|
8153
|
+
# accounts_url: "AccountsUrl",
|
7727
8154
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
7728
8155
|
# },
|
7729
8156
|
# regions: ["Region"], # required
|
@@ -7736,6 +8163,7 @@ module Aws::CloudFormation
|
|
7736
8163
|
# },
|
7737
8164
|
# ],
|
7738
8165
|
# operation_preferences: {
|
8166
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
7739
8167
|
# region_order: ["Region"],
|
7740
8168
|
# failure_tolerance_count: 1,
|
7741
8169
|
# failure_tolerance_percentage: 1,
|
@@ -7743,6 +8171,7 @@ module Aws::CloudFormation
|
|
7743
8171
|
# max_concurrent_percentage: 1,
|
7744
8172
|
# },
|
7745
8173
|
# operation_id: "ClientRequestToken",
|
8174
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
7746
8175
|
# }
|
7747
8176
|
#
|
7748
8177
|
# @!attribute [rw] stack_set_name
|
@@ -7751,7 +8180,7 @@ module Aws::CloudFormation
|
|
7751
8180
|
# @return [String]
|
7752
8181
|
#
|
7753
8182
|
# @!attribute [rw] accounts
|
7754
|
-
# \[
|
8183
|
+
# \[Self-managed permissions\] The names of one or more AWS accounts
|
7755
8184
|
# for which you want to update parameter values for stack instances.
|
7756
8185
|
# The overridden parameter values will be applied to all stack
|
7757
8186
|
# instances in the specified accounts and Regions.
|
@@ -7760,7 +8189,7 @@ module Aws::CloudFormation
|
|
7760
8189
|
# @return [Array<String>]
|
7761
8190
|
#
|
7762
8191
|
# @!attribute [rw] deployment_targets
|
7763
|
-
# \[
|
8192
|
+
# \[Service-managed permissions\] The AWS Organizations accounts for
|
7764
8193
|
# which you want to update parameter values for stack instances. If
|
7765
8194
|
# your update targets OUs, the overridden parameter values only apply
|
7766
8195
|
# to the accounts that are currently in the target OUs and their child
|
@@ -7844,6 +8273,29 @@ module Aws::CloudFormation
|
|
7844
8273
|
# not need to pass this option.
|
7845
8274
|
# @return [String]
|
7846
8275
|
#
|
8276
|
+
# @!attribute [rw] call_as
|
8277
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
8278
|
+
# an account administrator in the organization's management account
|
8279
|
+
# or as a delegated administrator in a member account.
|
8280
|
+
#
|
8281
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
8282
|
+
# self-managed permissions.
|
8283
|
+
#
|
8284
|
+
# * If you are signed in to the management account, specify `SELF`.
|
8285
|
+
#
|
8286
|
+
# * If you are signed in to a delegated administrator account, specify
|
8287
|
+
# `DELEGATED_ADMIN`.
|
8288
|
+
#
|
8289
|
+
# Your AWS account must be registered as a delegated administrator
|
8290
|
+
# in the management account. For more information, see [Register a
|
8291
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
8292
|
+
# Guide*.
|
8293
|
+
#
|
8294
|
+
#
|
8295
|
+
#
|
8296
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
8297
|
+
# @return [String]
|
8298
|
+
#
|
7847
8299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackInstancesInput AWS API Documentation
|
7848
8300
|
#
|
7849
8301
|
class UpdateStackInstancesInput < Struct.new(
|
@@ -7853,7 +8305,8 @@ module Aws::CloudFormation
|
|
7853
8305
|
:regions,
|
7854
8306
|
:parameter_overrides,
|
7855
8307
|
:operation_preferences,
|
7856
|
-
:operation_id
|
8308
|
+
:operation_id,
|
8309
|
+
:call_as)
|
7857
8310
|
SENSITIVE = []
|
7858
8311
|
include Aws::Structure
|
7859
8312
|
end
|
@@ -7909,6 +8362,7 @@ module Aws::CloudFormation
|
|
7909
8362
|
# },
|
7910
8363
|
# ],
|
7911
8364
|
# operation_preferences: {
|
8365
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
7912
8366
|
# region_order: ["Region"],
|
7913
8367
|
# failure_tolerance_count: 1,
|
7914
8368
|
# failure_tolerance_percentage: 1,
|
@@ -7919,6 +8373,7 @@ module Aws::CloudFormation
|
|
7919
8373
|
# execution_role_name: "ExecutionRoleName",
|
7920
8374
|
# deployment_targets: {
|
7921
8375
|
# accounts: ["Account"],
|
8376
|
+
# accounts_url: "AccountsUrl",
|
7922
8377
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
7923
8378
|
# },
|
7924
8379
|
# permission_model: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, SELF_MANAGED
|
@@ -7929,6 +8384,7 @@ module Aws::CloudFormation
|
|
7929
8384
|
# operation_id: "ClientRequestToken",
|
7930
8385
|
# accounts: ["Account"],
|
7931
8386
|
# regions: ["Region"],
|
8387
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
7932
8388
|
# }
|
7933
8389
|
#
|
7934
8390
|
# @!attribute [rw] stack_set_name
|
@@ -7957,8 +8413,9 @@ module Aws::CloudFormation
|
|
7957
8413
|
# @!attribute [rw] template_url
|
7958
8414
|
# The location of the file that contains the template body. The URL
|
7959
8415
|
# must point to a template (maximum size: 460,800 bytes) that is
|
7960
|
-
# located in an Amazon S3 bucket
|
7961
|
-
# Anatomy][1] in the AWS
|
8416
|
+
# located in an Amazon S3 bucket or a Systems Manager document. For
|
8417
|
+
# more information, see [Template Anatomy][1] in the AWS
|
8418
|
+
# CloudFormation User Guide.
|
7962
8419
|
#
|
7963
8420
|
# Conditional: You must specify only one of the following parameters:
|
7964
8421
|
# `TemplateBody` or `TemplateURL`—or set `UsePreviousTemplate` to
|
@@ -8136,7 +8593,7 @@ module Aws::CloudFormation
|
|
8136
8593
|
# @return [String]
|
8137
8594
|
#
|
8138
8595
|
# @!attribute [rw] deployment_targets
|
8139
|
-
# \[
|
8596
|
+
# \[Service-managed permissions\] The AWS Organizations accounts in
|
8140
8597
|
# which to update associated stack instances.
|
8141
8598
|
#
|
8142
8599
|
# To update all the stack instances associated with this stack set, do
|
@@ -8175,7 +8632,7 @@ module Aws::CloudFormation
|
|
8175
8632
|
# @return [String]
|
8176
8633
|
#
|
8177
8634
|
# @!attribute [rw] auto_deployment
|
8178
|
-
# \[
|
8635
|
+
# \[Service-managed permissions\] Describes whether StackSets
|
8179
8636
|
# automatically deploys to AWS Organizations accounts that are added
|
8180
8637
|
# to a target organization or organizational unit (OU).
|
8181
8638
|
#
|
@@ -8203,7 +8660,7 @@ module Aws::CloudFormation
|
|
8203
8660
|
# @return [String]
|
8204
8661
|
#
|
8205
8662
|
# @!attribute [rw] accounts
|
8206
|
-
# \[
|
8663
|
+
# \[Self-managed permissions\] The accounts in which to update
|
8207
8664
|
# associated stack instances. If you specify accounts, you must also
|
8208
8665
|
# specify the Regions in which to update stack set instances.
|
8209
8666
|
#
|
@@ -8240,6 +8697,29 @@ module Aws::CloudFormation
|
|
8240
8697
|
# existing stack instance status.
|
8241
8698
|
# @return [Array<String>]
|
8242
8699
|
#
|
8700
|
+
# @!attribute [rw] call_as
|
8701
|
+
# \[Service-managed permissions\] Specifies whether you are acting as
|
8702
|
+
# an account administrator in the organization's management account
|
8703
|
+
# or as a delegated administrator in a member account.
|
8704
|
+
#
|
8705
|
+
# By default, `SELF` is specified. Use `SELF` for stack sets with
|
8706
|
+
# self-managed permissions.
|
8707
|
+
#
|
8708
|
+
# * If you are signed in to the management account, specify `SELF`.
|
8709
|
+
#
|
8710
|
+
# * If you are signed in to a delegated administrator account, specify
|
8711
|
+
# `DELEGATED_ADMIN`.
|
8712
|
+
#
|
8713
|
+
# Your AWS account must be registered as a delegated administrator
|
8714
|
+
# in the management account. For more information, see [Register a
|
8715
|
+
# delegated administrator][1] in the *AWS CloudFormation User
|
8716
|
+
# Guide*.
|
8717
|
+
#
|
8718
|
+
#
|
8719
|
+
#
|
8720
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
8721
|
+
# @return [String]
|
8722
|
+
#
|
8243
8723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSetInput AWS API Documentation
|
8244
8724
|
#
|
8245
8725
|
class UpdateStackSetInput < Struct.new(
|
@@ -8259,7 +8739,8 @@ module Aws::CloudFormation
|
|
8259
8739
|
:auto_deployment,
|
8260
8740
|
:operation_id,
|
8261
8741
|
:accounts,
|
8262
|
-
:regions
|
8742
|
+
:regions,
|
8743
|
+
:call_as)
|
8263
8744
|
SENSITIVE = []
|
8264
8745
|
include Aws::Structure
|
8265
8746
|
end
|
@@ -8340,8 +8821,8 @@ module Aws::CloudFormation
|
|
8340
8821
|
# @!attribute [rw] template_url
|
8341
8822
|
# Location of file containing the template body. The URL must point to
|
8342
8823
|
# a template (max size: 460,800 bytes) that is located in an Amazon S3
|
8343
|
-
# bucket. For more information, go to
|
8344
|
-
# CloudFormation User Guide.
|
8824
|
+
# bucket or a Systems Manager document. For more information, go to
|
8825
|
+
# [Template Anatomy][1] in the AWS CloudFormation User Guide.
|
8345
8826
|
#
|
8346
8827
|
# Conditional: You must pass `TemplateURL` or `TemplateBody`. If both
|
8347
8828
|
# are passed, only `TemplateBody` is used.
|