aws-sdk-cloudformation 1.45.0 → 1.46.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/lib/aws-sdk-cloudformation.rb +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +26 -10
- data/lib/aws-sdk-cloudformation/client_api.rb +13 -0
- data/lib/aws-sdk-cloudformation/stack_resource.rb +8 -0
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +8 -0
- data/lib/aws-sdk-cloudformation/types.rb +100 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15c916e3c7de4fd18aa11937b2c814ef4617b44e3a1573a9dc421375d43432e0
|
4
|
+
data.tar.gz: 85d9ad2d96b296e25126fdd2dd1934f0e8f5d6aa4e4f98bc2f8b94515f242b51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc0432d94e09c25e9a5b0b81f7642f43a8cfa3afb9eb92025ab90412cc842f7b778849fda0244a3219e02ee1e6d1a7a48ab214bfad7d2215bee3e9de8f0ca517
|
7
|
+
data.tar.gz: 620d4c358c2542fd872214a478f2116b2a6af72efaddcde15f441ea6ea254a98447608517f877bec489751dd89de12ddcc566571d1311a83b2336c3caebdc26e
|
@@ -1741,7 +1741,7 @@ module Aws::CloudFormation
|
|
1741
1741
|
#
|
1742
1742
|
# resp = client.deregister_type({
|
1743
1743
|
# arn: "PrivateTypeArn",
|
1744
|
-
# type: "RESOURCE", # accepts RESOURCE
|
1744
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
1745
1745
|
# type_name: "TypeName",
|
1746
1746
|
# version_id: "TypeVersionId",
|
1747
1747
|
# })
|
@@ -1892,6 +1892,8 @@ module Aws::CloudFormation
|
|
1892
1892
|
# resp.changes[0].resource_change.details[0].change_source #=> String, one of "ResourceReference", "ParameterReference", "ResourceAttribute", "DirectModification", "Automatic"
|
1893
1893
|
# resp.changes[0].resource_change.details[0].causing_entity #=> String
|
1894
1894
|
# resp.changes[0].resource_change.change_set_id #=> String
|
1895
|
+
# resp.changes[0].resource_change.module_info.type_hierarchy #=> String
|
1896
|
+
# resp.changes[0].resource_change.module_info.logical_id_hierarchy #=> String
|
1895
1897
|
# resp.next_token #=> String
|
1896
1898
|
# resp.include_nested_stacks #=> Boolean
|
1897
1899
|
# resp.parent_change_set_id #=> String
|
@@ -2143,6 +2145,8 @@ module Aws::CloudFormation
|
|
2143
2145
|
# resp.stack_resource_detail.metadata #=> String
|
2144
2146
|
# resp.stack_resource_detail.drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2145
2147
|
# resp.stack_resource_detail.drift_information.last_check_timestamp #=> Time
|
2148
|
+
# resp.stack_resource_detail.module_info.type_hierarchy #=> String
|
2149
|
+
# resp.stack_resource_detail.module_info.logical_id_hierarchy #=> String
|
2146
2150
|
#
|
2147
2151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource AWS API Documentation
|
2148
2152
|
#
|
@@ -2237,6 +2241,8 @@ module Aws::CloudFormation
|
|
2237
2241
|
# resp.stack_resource_drifts[0].property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
2238
2242
|
# resp.stack_resource_drifts[0].stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2239
2243
|
# resp.stack_resource_drifts[0].timestamp #=> Time
|
2244
|
+
# resp.stack_resource_drifts[0].module_info.type_hierarchy #=> String
|
2245
|
+
# resp.stack_resource_drifts[0].module_info.logical_id_hierarchy #=> String
|
2240
2246
|
# resp.next_token #=> String
|
2241
2247
|
#
|
2242
2248
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResourceDrifts AWS API Documentation
|
@@ -2336,6 +2342,8 @@ module Aws::CloudFormation
|
|
2336
2342
|
# resp.stack_resources[0].description #=> String
|
2337
2343
|
# resp.stack_resources[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2338
2344
|
# resp.stack_resources[0].drift_information.last_check_timestamp #=> Time
|
2345
|
+
# resp.stack_resources[0].module_info.type_hierarchy #=> String
|
2346
|
+
# resp.stack_resources[0].module_info.logical_id_hierarchy #=> String
|
2339
2347
|
#
|
2340
2348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources AWS API Documentation
|
2341
2349
|
#
|
@@ -2616,7 +2624,7 @@ module Aws::CloudFormation
|
|
2616
2624
|
# @example Request syntax with placeholder values
|
2617
2625
|
#
|
2618
2626
|
# resp = client.describe_type({
|
2619
|
-
# type: "RESOURCE", # accepts RESOURCE
|
2627
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
2620
2628
|
# type_name: "TypeName",
|
2621
2629
|
# arn: "TypeArn",
|
2622
2630
|
# version_id: "TypeVersionId",
|
@@ -2625,7 +2633,7 @@ module Aws::CloudFormation
|
|
2625
2633
|
# @example Response structure
|
2626
2634
|
#
|
2627
2635
|
# resp.arn #=> String
|
2628
|
-
# resp.type #=> String, one of "RESOURCE"
|
2636
|
+
# resp.type #=> String, one of "RESOURCE", "MODULE"
|
2629
2637
|
# resp.type_name #=> String
|
2630
2638
|
# resp.default_version_id #=> String
|
2631
2639
|
# resp.is_default_version #=> Boolean
|
@@ -2825,6 +2833,8 @@ module Aws::CloudFormation
|
|
2825
2833
|
# resp.stack_resource_drift.property_differences[0].difference_type #=> String, one of "ADD", "REMOVE", "NOT_EQUAL"
|
2826
2834
|
# resp.stack_resource_drift.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
2827
2835
|
# resp.stack_resource_drift.timestamp #=> Time
|
2836
|
+
# resp.stack_resource_drift.module_info.type_hierarchy #=> String
|
2837
|
+
# resp.stack_resource_drift.module_info.logical_id_hierarchy #=> String
|
2828
2838
|
#
|
2829
2839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DetectStackResourceDrift AWS API Documentation
|
2830
2840
|
#
|
@@ -3521,6 +3531,8 @@ module Aws::CloudFormation
|
|
3521
3531
|
# resp.stack_resource_summaries[0].resource_status_reason #=> String
|
3522
3532
|
# resp.stack_resource_summaries[0].drift_information.stack_resource_drift_status #=> String, one of "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED"
|
3523
3533
|
# resp.stack_resource_summaries[0].drift_information.last_check_timestamp #=> Time
|
3534
|
+
# resp.stack_resource_summaries[0].module_info.type_hierarchy #=> String
|
3535
|
+
# resp.stack_resource_summaries[0].module_info.logical_id_hierarchy #=> String
|
3524
3536
|
# resp.next_token #=> String
|
3525
3537
|
#
|
3526
3538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResources AWS API Documentation
|
@@ -3813,7 +3825,7 @@ module Aws::CloudFormation
|
|
3813
3825
|
# @example Request syntax with placeholder values
|
3814
3826
|
#
|
3815
3827
|
# resp = client.list_type_registrations({
|
3816
|
-
# type: "RESOURCE", # accepts RESOURCE
|
3828
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
3817
3829
|
# type_name: "TypeName",
|
3818
3830
|
# type_arn: "TypeArn",
|
3819
3831
|
# registration_status_filter: "COMPLETE", # accepts COMPLETE, IN_PROGRESS, FAILED
|
@@ -3895,7 +3907,7 @@ module Aws::CloudFormation
|
|
3895
3907
|
# @example Request syntax with placeholder values
|
3896
3908
|
#
|
3897
3909
|
# resp = client.list_type_versions({
|
3898
|
-
# type: "RESOURCE", # accepts RESOURCE
|
3910
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
3899
3911
|
# type_name: "TypeName",
|
3900
3912
|
# arn: "PrivateTypeArn",
|
3901
3913
|
# max_results: 1,
|
@@ -3906,7 +3918,7 @@ module Aws::CloudFormation
|
|
3906
3918
|
# @example Response structure
|
3907
3919
|
#
|
3908
3920
|
# resp.type_version_summaries #=> Array
|
3909
|
-
# resp.type_version_summaries[0].type #=> String, one of "RESOURCE"
|
3921
|
+
# resp.type_version_summaries[0].type #=> String, one of "RESOURCE", "MODULE"
|
3910
3922
|
# resp.type_version_summaries[0].type_name #=> String
|
3911
3923
|
# resp.type_version_summaries[0].version_id #=> String
|
3912
3924
|
# resp.type_version_summaries[0].is_default_version #=> Boolean
|
@@ -3971,6 +3983,9 @@ module Aws::CloudFormation
|
|
3971
3983
|
# * `DEPRECATED`\: The type has been deregistered and can no longer be
|
3972
3984
|
# used in CloudFormation operations.
|
3973
3985
|
#
|
3986
|
+
# @option params [String] :type
|
3987
|
+
# The type of extension.
|
3988
|
+
#
|
3974
3989
|
# @option params [Integer] :max_results
|
3975
3990
|
# The maximum number of results to be returned with a single call. If
|
3976
3991
|
# the number of available results exceeds this maximum, the response
|
@@ -3998,6 +4013,7 @@ module Aws::CloudFormation
|
|
3998
4013
|
# visibility: "PUBLIC", # accepts PUBLIC, PRIVATE
|
3999
4014
|
# provisioning_type: "NON_PROVISIONABLE", # accepts NON_PROVISIONABLE, IMMUTABLE, FULLY_MUTABLE
|
4000
4015
|
# deprecated_status: "LIVE", # accepts LIVE, DEPRECATED
|
4016
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4001
4017
|
# max_results: 1,
|
4002
4018
|
# next_token: "NextToken",
|
4003
4019
|
# })
|
@@ -4005,7 +4021,7 @@ module Aws::CloudFormation
|
|
4005
4021
|
# @example Response structure
|
4006
4022
|
#
|
4007
4023
|
# resp.type_summaries #=> Array
|
4008
|
-
# resp.type_summaries[0].type #=> String, one of "RESOURCE"
|
4024
|
+
# resp.type_summaries[0].type #=> String, one of "RESOURCE", "MODULE"
|
4009
4025
|
# resp.type_summaries[0].type_name #=> String
|
4010
4026
|
# resp.type_summaries[0].default_version_id #=> String
|
4011
4027
|
# resp.type_summaries[0].type_arn #=> String
|
@@ -4212,7 +4228,7 @@ module Aws::CloudFormation
|
|
4212
4228
|
# @example Request syntax with placeholder values
|
4213
4229
|
#
|
4214
4230
|
# resp = client.register_type({
|
4215
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4231
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4216
4232
|
# type_name: "TypeName", # required
|
4217
4233
|
# schema_handler_package: "S3Url", # required
|
4218
4234
|
# logging_config: {
|
@@ -4306,7 +4322,7 @@ module Aws::CloudFormation
|
|
4306
4322
|
#
|
4307
4323
|
# resp = client.set_type_default_version({
|
4308
4324
|
# arn: "PrivateTypeArn",
|
4309
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4325
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4310
4326
|
# type_name: "TypeName",
|
4311
4327
|
# version_id: "TypeVersionId",
|
4312
4328
|
# })
|
@@ -5358,7 +5374,7 @@ module Aws::CloudFormation
|
|
5358
5374
|
params: params,
|
5359
5375
|
config: config)
|
5360
5376
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5361
|
-
context[:gem_version] = '1.
|
5377
|
+
context[:gem_version] = '1.46.0'
|
5362
5378
|
Seahorse::Client::Request.new(handlers, context)
|
5363
5379
|
end
|
5364
5380
|
|
@@ -174,12 +174,14 @@ module Aws::CloudFormation
|
|
174
174
|
ListTypesOutput = Shapes::StructureShape.new(name: 'ListTypesOutput')
|
175
175
|
LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
|
176
176
|
LoggingConfig = Shapes::StructureShape.new(name: 'LoggingConfig')
|
177
|
+
LogicalIdHierarchy = Shapes::StringShape.new(name: 'LogicalIdHierarchy')
|
177
178
|
LogicalResourceId = Shapes::StringShape.new(name: 'LogicalResourceId')
|
178
179
|
LogicalResourceIds = Shapes::ListShape.new(name: 'LogicalResourceIds')
|
179
180
|
MaxConcurrentCount = Shapes::IntegerShape.new(name: 'MaxConcurrentCount')
|
180
181
|
MaxConcurrentPercentage = Shapes::IntegerShape.new(name: 'MaxConcurrentPercentage')
|
181
182
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
182
183
|
Metadata = Shapes::StringShape.new(name: 'Metadata')
|
184
|
+
ModuleInfo = Shapes::StructureShape.new(name: 'ModuleInfo')
|
183
185
|
MonitoringTimeInMinutes = Shapes::IntegerShape.new(name: 'MonitoringTimeInMinutes')
|
184
186
|
NameAlreadyExistsException = Shapes::StructureShape.new(name: 'NameAlreadyExistsException')
|
185
187
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
@@ -360,6 +362,7 @@ module Aws::CloudFormation
|
|
360
362
|
TransformsList = Shapes::ListShape.new(name: 'TransformsList')
|
361
363
|
Type = Shapes::StringShape.new(name: 'Type')
|
362
364
|
TypeArn = Shapes::StringShape.new(name: 'TypeArn')
|
365
|
+
TypeHierarchy = Shapes::StringShape.new(name: 'TypeHierarchy')
|
363
366
|
TypeName = Shapes::StringShape.new(name: 'TypeName')
|
364
367
|
TypeNotFoundException = Shapes::StructureShape.new(name: 'TypeNotFoundException')
|
365
368
|
TypeSchema = Shapes::StringShape.new(name: 'TypeSchema')
|
@@ -897,6 +900,7 @@ module Aws::CloudFormation
|
|
897
900
|
ListTypesInput.add_member(:visibility, Shapes::ShapeRef.new(shape: Visibility, location_name: "Visibility"))
|
898
901
|
ListTypesInput.add_member(:provisioning_type, Shapes::ShapeRef.new(shape: ProvisioningType, location_name: "ProvisioningType"))
|
899
902
|
ListTypesInput.add_member(:deprecated_status, Shapes::ShapeRef.new(shape: DeprecatedStatus, location_name: "DeprecatedStatus"))
|
903
|
+
ListTypesInput.add_member(:type, Shapes::ShapeRef.new(shape: RegistryType, location_name: "Type"))
|
900
904
|
ListTypesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
901
905
|
ListTypesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
902
906
|
ListTypesInput.struct_class = Types::ListTypesInput
|
@@ -911,6 +915,10 @@ module Aws::CloudFormation
|
|
911
915
|
|
912
916
|
LogicalResourceIds.member = Shapes::ShapeRef.new(shape: LogicalResourceId)
|
913
917
|
|
918
|
+
ModuleInfo.add_member(:type_hierarchy, Shapes::ShapeRef.new(shape: TypeHierarchy, location_name: "TypeHierarchy"))
|
919
|
+
ModuleInfo.add_member(:logical_id_hierarchy, Shapes::ShapeRef.new(shape: LogicalIdHierarchy, location_name: "LogicalIdHierarchy"))
|
920
|
+
ModuleInfo.struct_class = Types::ModuleInfo
|
921
|
+
|
914
922
|
NameAlreadyExistsException.struct_class = Types::NameAlreadyExistsException
|
915
923
|
|
916
924
|
NotificationARNs.member = Shapes::ShapeRef.new(shape: NotificationARN)
|
@@ -1002,6 +1010,7 @@ module Aws::CloudFormation
|
|
1002
1010
|
ResourceChange.add_member(:scope, Shapes::ShapeRef.new(shape: Scope, location_name: "Scope"))
|
1003
1011
|
ResourceChange.add_member(:details, Shapes::ShapeRef.new(shape: ResourceChangeDetails, location_name: "Details"))
|
1004
1012
|
ResourceChange.add_member(:change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "ChangeSetId"))
|
1013
|
+
ResourceChange.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1005
1014
|
ResourceChange.struct_class = Types::ResourceChange
|
1006
1015
|
|
1007
1016
|
ResourceChangeDetail.add_member(:target, Shapes::ShapeRef.new(shape: ResourceTargetDefinition, location_name: "Target"))
|
@@ -1168,6 +1177,7 @@ module Aws::CloudFormation
|
|
1168
1177
|
StackResource.add_member(:resource_status_reason, Shapes::ShapeRef.new(shape: ResourceStatusReason, location_name: "ResourceStatusReason"))
|
1169
1178
|
StackResource.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
1170
1179
|
StackResource.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackResourceDriftInformation, location_name: "DriftInformation"))
|
1180
|
+
StackResource.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1171
1181
|
StackResource.struct_class = Types::StackResource
|
1172
1182
|
|
1173
1183
|
StackResourceDetail.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackName, location_name: "StackName"))
|
@@ -1181,6 +1191,7 @@ module Aws::CloudFormation
|
|
1181
1191
|
StackResourceDetail.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
1182
1192
|
StackResourceDetail.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location_name: "Metadata"))
|
1183
1193
|
StackResourceDetail.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackResourceDriftInformation, location_name: "DriftInformation"))
|
1194
|
+
StackResourceDetail.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1184
1195
|
StackResourceDetail.struct_class = Types::StackResourceDetail
|
1185
1196
|
|
1186
1197
|
StackResourceDrift.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, required: true, location_name: "StackId"))
|
@@ -1193,6 +1204,7 @@ module Aws::CloudFormation
|
|
1193
1204
|
StackResourceDrift.add_member(:property_differences, Shapes::ShapeRef.new(shape: PropertyDifferences, location_name: "PropertyDifferences"))
|
1194
1205
|
StackResourceDrift.add_member(:stack_resource_drift_status, Shapes::ShapeRef.new(shape: StackResourceDriftStatus, required: true, location_name: "StackResourceDriftStatus"))
|
1195
1206
|
StackResourceDrift.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "Timestamp"))
|
1207
|
+
StackResourceDrift.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1196
1208
|
StackResourceDrift.struct_class = Types::StackResourceDrift
|
1197
1209
|
|
1198
1210
|
StackResourceDriftInformation.add_member(:stack_resource_drift_status, Shapes::ShapeRef.new(shape: StackResourceDriftStatus, required: true, location_name: "StackResourceDriftStatus"))
|
@@ -1216,6 +1228,7 @@ module Aws::CloudFormation
|
|
1216
1228
|
StackResourceSummary.add_member(:resource_status, Shapes::ShapeRef.new(shape: ResourceStatus, required: true, location_name: "ResourceStatus"))
|
1217
1229
|
StackResourceSummary.add_member(:resource_status_reason, Shapes::ShapeRef.new(shape: ResourceStatusReason, location_name: "ResourceStatusReason"))
|
1218
1230
|
StackResourceSummary.add_member(:drift_information, Shapes::ShapeRef.new(shape: StackResourceDriftInformationSummary, location_name: "DriftInformation"))
|
1231
|
+
StackResourceSummary.add_member(:module_info, Shapes::ShapeRef.new(shape: ModuleInfo, location_name: "ModuleInfo"))
|
1219
1232
|
StackResourceSummary.struct_class = Types::StackResourceSummary
|
1220
1233
|
|
1221
1234
|
StackResources.member = Shapes::ShapeRef.new(shape: StackResource)
|
@@ -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]
|
@@ -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]
|
@@ -1755,8 +1755,9 @@ module Aws::CloudFormation
|
|
1755
1755
|
|
1756
1756
|
# \[`Service-managed` permissions\] The AWS Organizations accounts to
|
1757
1757
|
# which StackSets deploys. StackSets does not deploy stack instances to
|
1758
|
-
# the organization
|
1759
|
-
# organization or in an OU in your
|
1758
|
+
# the organization management account, even if the organization
|
1759
|
+
# management account is in your organization or in an OU in your
|
1760
|
+
# organization.
|
1760
1761
|
#
|
1761
1762
|
# For update operations, you can specify either `Accounts` or
|
1762
1763
|
# `OrganizationalUnitIds`. For create and delete operations, specify
|
@@ -1794,7 +1795,7 @@ module Aws::CloudFormation
|
|
1794
1795
|
#
|
1795
1796
|
# {
|
1796
1797
|
# arn: "PrivateTypeArn",
|
1797
|
-
# type: "RESOURCE", # accepts RESOURCE
|
1798
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
1798
1799
|
# type_name: "TypeName",
|
1799
1800
|
# version_id: "TypeVersionId",
|
1800
1801
|
# }
|
@@ -2600,7 +2601,7 @@ module Aws::CloudFormation
|
|
2600
2601
|
# data as a hash:
|
2601
2602
|
#
|
2602
2603
|
# {
|
2603
|
-
# type: "RESOURCE", # accepts RESOURCE
|
2604
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
2604
2605
|
# type_name: "TypeName",
|
2605
2606
|
# arn: "TypeArn",
|
2606
2607
|
# version_id: "TypeVersionId",
|
@@ -3992,7 +3993,7 @@ module Aws::CloudFormation
|
|
3992
3993
|
# data as a hash:
|
3993
3994
|
#
|
3994
3995
|
# {
|
3995
|
-
# type: "RESOURCE", # accepts RESOURCE
|
3996
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
3996
3997
|
# type_name: "TypeName",
|
3997
3998
|
# type_arn: "TypeArn",
|
3998
3999
|
# registration_status_filter: "COMPLETE", # accepts COMPLETE, IN_PROGRESS, FAILED
|
@@ -4086,7 +4087,7 @@ module Aws::CloudFormation
|
|
4086
4087
|
# data as a hash:
|
4087
4088
|
#
|
4088
4089
|
# {
|
4089
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4090
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4090
4091
|
# type_name: "TypeName",
|
4091
4092
|
# arn: "PrivateTypeArn",
|
4092
4093
|
# max_results: 1,
|
@@ -4192,6 +4193,7 @@ module Aws::CloudFormation
|
|
4192
4193
|
# visibility: "PUBLIC", # accepts PUBLIC, PRIVATE
|
4193
4194
|
# provisioning_type: "NON_PROVISIONABLE", # accepts NON_PROVISIONABLE, IMMUTABLE, FULLY_MUTABLE
|
4194
4195
|
# deprecated_status: "LIVE", # accepts LIVE, DEPRECATED
|
4196
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4195
4197
|
# max_results: 1,
|
4196
4198
|
# next_token: "NextToken",
|
4197
4199
|
# }
|
@@ -4243,6 +4245,10 @@ module Aws::CloudFormation
|
|
4243
4245
|
# used in CloudFormation operations.
|
4244
4246
|
# @return [String]
|
4245
4247
|
#
|
4248
|
+
# @!attribute [rw] type
|
4249
|
+
# The type of extension.
|
4250
|
+
# @return [String]
|
4251
|
+
#
|
4246
4252
|
# @!attribute [rw] max_results
|
4247
4253
|
# The maximum number of results to be returned with a single call. If
|
4248
4254
|
# the number of available results exceeds this maximum, the response
|
@@ -4265,6 +4271,7 @@ module Aws::CloudFormation
|
|
4265
4271
|
:visibility,
|
4266
4272
|
:provisioning_type,
|
4267
4273
|
:deprecated_status,
|
4274
|
+
:type,
|
4268
4275
|
:max_results,
|
4269
4276
|
:next_token)
|
4270
4277
|
SENSITIVE = []
|
@@ -4322,6 +4329,51 @@ module Aws::CloudFormation
|
|
4322
4329
|
include Aws::Structure
|
4323
4330
|
end
|
4324
4331
|
|
4332
|
+
# Contains information about the module from which the resource was
|
4333
|
+
# created, if the resource was created from a module included in the
|
4334
|
+
# stack template.
|
4335
|
+
#
|
4336
|
+
# For more information on modules, see [Using modules to encapsulate and
|
4337
|
+
# reuse resource
|
4338
|
+
# configurations](AWSCloudFormation/latest/UserGuide/modules.html) in
|
4339
|
+
# the *CloudFormation User Guide*.
|
4340
|
+
#
|
4341
|
+
# @!attribute [rw] type_hierarchy
|
4342
|
+
# A concantenated list of the the module type or types containing the
|
4343
|
+
# resource. Module types are listed starting with the inner-most
|
4344
|
+
# nested module, and separated by `/`.
|
4345
|
+
#
|
4346
|
+
# In the following example, the resource was created from a module of
|
4347
|
+
# type `AWS::First::Example::MODULE`, that is nested inside a parent
|
4348
|
+
# module of type `AWS::Second::Example::MODULE`.
|
4349
|
+
#
|
4350
|
+
# `AWS::First::Example::MODULE/AWS::Second::Example::MODULE`
|
4351
|
+
# @return [String]
|
4352
|
+
#
|
4353
|
+
# @!attribute [rw] logical_id_hierarchy
|
4354
|
+
# A concantenated list of the logical IDs of the module or modules
|
4355
|
+
# containing the resource. Modules are listed starting with the
|
4356
|
+
# inner-most nested module, and separated by `/`.
|
4357
|
+
#
|
4358
|
+
# In the following example, the resource was created from a module,
|
4359
|
+
# `moduleA`, that is nested inside a parent module, `moduleB`.
|
4360
|
+
#
|
4361
|
+
# `moduleA/moduleB`
|
4362
|
+
#
|
4363
|
+
# For more information, see [Referencing resources in a
|
4364
|
+
# module](AWSCloudFormation/latest/UserGuide/modules.html#module-ref-resources)
|
4365
|
+
# in the *CloudFormation User Guide*.
|
4366
|
+
# @return [String]
|
4367
|
+
#
|
4368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ModuleInfo AWS API Documentation
|
4369
|
+
#
|
4370
|
+
class ModuleInfo < Struct.new(
|
4371
|
+
:type_hierarchy,
|
4372
|
+
:logical_id_hierarchy)
|
4373
|
+
SENSITIVE = []
|
4374
|
+
include Aws::Structure
|
4375
|
+
end
|
4376
|
+
|
4325
4377
|
# The specified name is already in use.
|
4326
4378
|
#
|
4327
4379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/NameAlreadyExistsException AWS API Documentation
|
@@ -4657,7 +4709,7 @@ module Aws::CloudFormation
|
|
4657
4709
|
# data as a hash:
|
4658
4710
|
#
|
4659
4711
|
# {
|
4660
|
-
# type: "RESOURCE", # accepts RESOURCE
|
4712
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
4661
4713
|
# type_name: "TypeName", # required
|
4662
4714
|
# schema_handler_package: "S3Url", # required
|
4663
4715
|
# logging_config: {
|
@@ -4835,6 +4887,12 @@ module Aws::CloudFormation
|
|
4835
4887
|
# The change set ID of the nested change set.
|
4836
4888
|
# @return [String]
|
4837
4889
|
#
|
4890
|
+
# @!attribute [rw] module_info
|
4891
|
+
# Contains information about the module from which the resource was
|
4892
|
+
# created, if the resource was created from a module included in the
|
4893
|
+
# stack template.
|
4894
|
+
# @return [Types::ModuleInfo]
|
4895
|
+
#
|
4838
4896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ResourceChange AWS API Documentation
|
4839
4897
|
#
|
4840
4898
|
class ResourceChange < Struct.new(
|
@@ -4845,7 +4903,8 @@ module Aws::CloudFormation
|
|
4845
4903
|
:replacement,
|
4846
4904
|
:scope,
|
4847
4905
|
:details,
|
4848
|
-
:change_set_id
|
4906
|
+
:change_set_id,
|
4907
|
+
:module_info)
|
4849
4908
|
SENSITIVE = []
|
4850
4909
|
include Aws::Structure
|
4851
4910
|
end
|
@@ -5217,7 +5276,7 @@ module Aws::CloudFormation
|
|
5217
5276
|
#
|
5218
5277
|
# {
|
5219
5278
|
# arn: "PrivateTypeArn",
|
5220
|
-
# type: "RESOURCE", # accepts RESOURCE
|
5279
|
+
# type: "RESOURCE", # accepts RESOURCE, MODULE
|
5221
5280
|
# type_name: "TypeName",
|
5222
5281
|
# version_id: "TypeVersionId",
|
5223
5282
|
# }
|
@@ -5991,6 +6050,12 @@ module Aws::CloudFormation
|
|
5991
6050
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
5992
6051
|
# @return [Types::StackResourceDriftInformation]
|
5993
6052
|
#
|
6053
|
+
# @!attribute [rw] module_info
|
6054
|
+
# Contains information about the module from which the resource was
|
6055
|
+
# created, if the resource was created from a module included in the
|
6056
|
+
# stack template.
|
6057
|
+
# @return [Types::ModuleInfo]
|
6058
|
+
#
|
5994
6059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResource AWS API Documentation
|
5995
6060
|
#
|
5996
6061
|
class StackResource < Struct.new(
|
@@ -6003,7 +6068,8 @@ module Aws::CloudFormation
|
|
6003
6068
|
:resource_status,
|
6004
6069
|
:resource_status_reason,
|
6005
6070
|
:description,
|
6006
|
-
:drift_information
|
6071
|
+
:drift_information,
|
6072
|
+
:module_info)
|
6007
6073
|
SENSITIVE = []
|
6008
6074
|
include Aws::Structure
|
6009
6075
|
end
|
@@ -6074,6 +6140,12 @@ module Aws::CloudFormation
|
|
6074
6140
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
6075
6141
|
# @return [Types::StackResourceDriftInformation]
|
6076
6142
|
#
|
6143
|
+
# @!attribute [rw] module_info
|
6144
|
+
# Contains information about the module from which the resource was
|
6145
|
+
# created, if the resource was created from a module included in the
|
6146
|
+
# stack template.
|
6147
|
+
# @return [Types::ModuleInfo]
|
6148
|
+
#
|
6077
6149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceDetail AWS API Documentation
|
6078
6150
|
#
|
6079
6151
|
class StackResourceDetail < Struct.new(
|
@@ -6087,7 +6159,8 @@ module Aws::CloudFormation
|
|
6087
6159
|
:resource_status_reason,
|
6088
6160
|
:description,
|
6089
6161
|
:metadata,
|
6090
|
-
:drift_information
|
6162
|
+
:drift_information,
|
6163
|
+
:module_info)
|
6091
6164
|
SENSITIVE = []
|
6092
6165
|
include Aws::Structure
|
6093
6166
|
end
|
@@ -6183,6 +6256,12 @@ module Aws::CloudFormation
|
|
6183
6256
|
# stack resource.
|
6184
6257
|
# @return [Time]
|
6185
6258
|
#
|
6259
|
+
# @!attribute [rw] module_info
|
6260
|
+
# Contains information about the module from which the resource was
|
6261
|
+
# created, if the resource was created from a module included in the
|
6262
|
+
# stack template.
|
6263
|
+
# @return [Types::ModuleInfo]
|
6264
|
+
#
|
6186
6265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceDrift AWS API Documentation
|
6187
6266
|
#
|
6188
6267
|
class StackResourceDrift < Struct.new(
|
@@ -6195,7 +6274,8 @@ module Aws::CloudFormation
|
|
6195
6274
|
:actual_properties,
|
6196
6275
|
:property_differences,
|
6197
6276
|
:stack_resource_drift_status,
|
6198
|
-
:timestamp
|
6277
|
+
:timestamp,
|
6278
|
+
:module_info)
|
6199
6279
|
SENSITIVE = []
|
6200
6280
|
include Aws::Structure
|
6201
6281
|
end
|
@@ -6334,6 +6414,12 @@ module Aws::CloudFormation
|
|
6334
6414
|
# [1]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html
|
6335
6415
|
# @return [Types::StackResourceDriftInformationSummary]
|
6336
6416
|
#
|
6417
|
+
# @!attribute [rw] module_info
|
6418
|
+
# Contains information about the module from which the resource was
|
6419
|
+
# created, if the resource was created from a module included in the
|
6420
|
+
# stack template.
|
6421
|
+
# @return [Types::ModuleInfo]
|
6422
|
+
#
|
6337
6423
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackResourceSummary AWS API Documentation
|
6338
6424
|
#
|
6339
6425
|
class StackResourceSummary < Struct.new(
|
@@ -6343,7 +6429,8 @@ module Aws::CloudFormation
|
|
6343
6429
|
:last_updated_timestamp,
|
6344
6430
|
:resource_status,
|
6345
6431
|
:resource_status_reason,
|
6346
|
-
:drift_information
|
6432
|
+
:drift_information,
|
6433
|
+
:module_info)
|
6347
6434
|
SENSITIVE = []
|
6348
6435
|
include Aws::Structure
|
6349
6436
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudformation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.46.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|