Batch Describe Type Configurations
cloudformation_batch_describe_type_configurations | R Documentation |
Returns configuration data for the specified CloudFormation extensions, from the CloudFormation registry for the account and Region¶
Description¶
Returns configuration data for the specified CloudFormation extensions, from the CloudFormation registry for the account and Region.
For more information, see Configuring extensions at the account level in the CloudFormation User Guide.
Usage¶
Arguments¶
TypeConfigurationIdentifiers
[required] The list of identifiers for the desired extension configurations.
Value¶
A list with the following syntax:
list(
Errors = list(
list(
ErrorCode = "string",
ErrorMessage = "string",
TypeConfigurationIdentifier = list(
TypeArn = "string",
TypeConfigurationAlias = "string",
TypeConfigurationArn = "string",
Type = "RESOURCE"|"MODULE"|"HOOK",
TypeName = "string"
)
)
),
UnprocessedTypeConfigurations = list(
list(
TypeArn = "string",
TypeConfigurationAlias = "string",
TypeConfigurationArn = "string",
Type = "RESOURCE"|"MODULE"|"HOOK",
TypeName = "string"
)
),
TypeConfigurations = list(
list(
Arn = "string",
Alias = "string",
Configuration = "string",
LastUpdated = as.POSIXct(
"2015-01-01"
),
TypeArn = "string",
TypeName = "string",
IsDefaultConfiguration = TRUE|FALSE
)
)
)