aws.cloudformation.describe_type
Example SQL Queries
SELECT * FROMaws.cloudformation.describe_type;Description
Returns detailed information about an extension that has been registered.
If you specify a VersionId, DescribeType returns information about that specific extension version. Otherwise, it returns information about the default extension version.
Table Definition
| Column Name | Column Data Type |
|---|---|
| arn Input Column The Amazon Resource Name (ARN) of the extension. | VARCHAR |
| public_version_number Input Column The version number of a public third-party extension. This applies only if you specify a public extension you have activated in your account, or specify a public extension without specifying a version. For all other extensions, CloudFormation returns null. | VARCHAR |
| publisher_id Input Column The publisher ID of the extension publisher. This applies only to public third-party extensions. For private registered extensions, and extensions provided by Amazon Web Services, CloudFormation returns null. | VARCHAR |
| type Input Column The kind of extension. | VARCHAR |
| type_name Input Column The name of the extension. If the extension is a public third-party type you have activated with a type name alias, CloudFormation returns the type name alias. For more information, see ActivateType. | VARCHAR |
| version_id Input Column The ID of a specific version of the extension. The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the extension version when it is registered. If you specify a VersionId, DescribeType returns information about that specific extension version. Otherwise, it returns information about the default extension version. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| auto_update Whether CloudFormation automatically updates the extension in this account and Region when a new minor version is published by the extension publisher. Major versions released by the publisher must be manually updated. For more information, see Activating public extensions for use in your account in the CloudFormation User Guide. | BOOLEAN |
| configuration_schema A JSON string that represent the current configuration data for the extension in this account and Region. To set the configuration data for an extension, use SetTypeConfiguration. For more information, see Configuring extensions at the account level in the CloudFormation User Guide. | VARCHAR |
| default_version_id The ID of the default version of the extension. The default version is used when the extension version isn't specified. This applies only to private extensions you have registered in your account. For public extensions, both those provided by Amazon Web Services and published by third parties, CloudFormation returns null. For more information, see RegisterType. To set the default version of an extension, use SetTypeDefaultVersion. | VARCHAR |
| deprecated_status The deprecation status of the extension version. Valid values include:
For public third-party extensions, CloudFormation returns null. | VARCHAR |
| description The description of the extension. | VARCHAR |
| documentation_url The URL of a page providing detailed documentation for this extension. | VARCHAR |
| execution_role_arn The Amazon Resource Name (ARN) of the IAM execution role used to register the extension. This applies only to private extensions you have registered in your account. For more information, see RegisterType. If the registered extension calls any Amazon Web Services APIs, you must create an IAM execution role that includes the necessary permissions to call those Amazon Web Services APIs, and provision that execution role in your account. CloudFormation then assumes that execution role to provide your extension with the appropriate credentials. | VARCHAR |
| is_activated Whether the extension is activated in the account and Region. This only applies to public third-party extensions. For all other extensions, CloudFormation returns null. | BOOLEAN |
| is_default_version Whether the specified extension version is set as the default version. This applies only to private extensions you have registered in your account, and extensions published by Amazon Web Services. For public third-party extensions, whether they are activated in your account, CloudFormation returns null. | BOOLEAN |
| last_updated When the specified extension version was registered. This applies only to:
| TIMESTAMP_S |
| latest_public_version The latest version of a public extension that is available for use. This only applies if you specify a public extension, and you don't specify a version. For all other requests, CloudFormation returns null. | VARCHAR |
| logging_config Contains logging configuration information for private extensions. This applies only to private extensions you have registered in your account. For public extensions, both those provided by Amazon Web Services and published by third parties, CloudFormation returns null. For more information, see RegisterType. | STRUCT( |
Show child fields
| |
| original_type_arn For public extensions that have been activated for this account and Region, the Amazon Resource Name (ARN) of the public extension. | VARCHAR |
| original_type_name For public extensions that have been activated for this account and Region, the type name of the public extension. If you specified a TypeNameAlias when enabling the extension in this account and Region, CloudFormation treats that alias as the extension's type name within the account and Region, not the type name of the public extension. For more information, see Specifying aliases to refer to extensions in the CloudFormation User Guide. | VARCHAR |
| provisioning_type For resource type extensions, the provisioning behavior of the resource type. CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted. Valid values include:
| VARCHAR |
| required_activated_types For extensions that are modules, the public third-party extensions that must be activated in your account in order for the module itself to be activated. | STRUCT( |
Show child fields
| |
| schema The schema that defines the extension. For more information about extension schemas, see Resource Provider Schema in the CloudFormation CLI User Guide. | VARCHAR |
| source_url The URL of the source code for the extension. | VARCHAR |
| time_created When the specified private extension version was registered or activated in your account. | TIMESTAMP_S |
| type_tests_status The contract test status of the registered extension version. To return the extension test status of a specific extension version, you must specify VersionId. This applies only to registered private extension versions. CloudFormation doesn't return this information for public extensions, whether they are activated in your account.
| VARCHAR |
| type_tests_status_description The description of the test status. To return the extension test status of a specific extension version, you must specify VersionId. This applies only to registered private extension versions. CloudFormation doesn't return this information for public extensions, whether they are activated in your account. | VARCHAR |
| visibility The scope at which the extension is visible and usable in CloudFormation operations. Valid values include:
| VARCHAR |