AWS CloudFormation · Schema

Parameter

AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

Properties

Name Type Description
ParameterKey string The key associated with the parameter.
ParameterValue string The input value associated with the parameter.
UsePreviousValue boolean Use the existing parameter value during stack updates.
ResolvedValue string The value that resolves to for SSM parameter types.
View JSON Schema on GitHub

JSON Schema

cloudformation-parameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Parameter",
  "type": "object",
  "properties": {
    "ParameterKey": {
      "type": "string",
      "description": "The key associated with the parameter."
    },
    "ParameterValue": {
      "type": "string",
      "description": "The input value associated with the parameter."
    },
    "UsePreviousValue": {
      "type": "boolean",
      "description": "Use the existing parameter value during stack updates."
    },
    "ResolvedValue": {
      "type": "string",
      "description": "The value that resolves to for SSM parameter types."
    }
  }
}