AWS CloudFormation · JSON Structure

Cloudformation Parameter Structure

Type: object Properties: 4
AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

Parameter is a JSON Structure definition published by AWS CloudFormation, describing 4 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

ParameterKey ParameterValue UsePreviousValue ResolvedValue

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Parameter",
  "type": "object",
  "properties": {
    "ParameterKey": {
      "type": "string"
    },
    "ParameterValue": {
      "type": "string"
    },
    "UsePreviousValue": {
      "type": "boolean"
    },
    "ResolvedValue": {
      "type": "string"
    }
  }
}