AWS CloudFormation · Schema

Export

AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

Properties

Name Type Description
ExportingStackId string The stack that contains the exported output value.
Name string The name of the exported output value.
Value string The value of the exported output.
View JSON Schema on GitHub

JSON Schema

cloudformation-export-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Export",
  "type": "object",
  "properties": {
    "ExportingStackId": {
      "type": "string",
      "description": "The stack that contains the exported output value."
    },
    "Name": {
      "type": "string",
      "description": "The name of the exported output value."
    },
    "Value": {
      "type": "string",
      "description": "The value of the exported output."
    }
  }
}