AWS CloudFormation · Schema

Output

AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

Properties

Name Type Description
OutputKey string The key associated with the output.
OutputValue string The value associated with the output.
Description string User-defined description.
ExportName string The name of the export associated with the output.
View JSON Schema on GitHub

JSON Schema

cloudformation-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Output",
  "type": "object",
  "properties": {
    "OutputKey": {
      "type": "string",
      "description": "The key associated with the output."
    },
    "OutputValue": {
      "type": "string",
      "description": "The value associated with the output."
    },
    "Description": {
      "type": "string",
      "description": "User-defined description."
    },
    "ExportName": {
      "type": "string",
      "description": "The name of the export associated with the output."
    }
  }
}