aws.cloudformation.list_exports
Example SQL Queries
SELECT * FROMaws.cloudformation.list_exports;Description
Lists all exported output values in the account and Region in which you call this action. Use this action to see the exported output values that you can import into other stacks. To import values, use the Fn::ImportValue function.
For more information, see CloudFormation export stack output values.
Table Definition
| Column Name | Column Data Type |
|---|---|
| _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 |
| exporting_stack_id The stack that contains the exported output name and value. | VARCHAR |
| name The name of exported output value. Use this name and the Fn::ImportValue function to import the associated value into other stacks. The name is defined in the Export field in the associated stack's Outputs section. | VARCHAR |
| value The value of the exported output, such as a resource physical ID. This value is defined in the Export field in the associated stack's Outputs section. | VARCHAR |