Parameter

Parameter schema

CloudFormationInfrastructure as CodeDevOpsIaC

Properties

Name Type Description
ParameterKey string
ParameterValue string
UsePreviousValue boolean
ResolvedValue string
View JSON Schema on GitHub

JSON Schema

cloudformation-parameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudformation/refs/heads/main/json-schema/cloudformation-parameter-schema.json",
  "title": "Parameter",
  "description": "Parameter schema",
  "type": "object",
  "properties": {
    "ParameterKey": {
      "type": "string"
    },
    "ParameterValue": {
      "type": "string"
    },
    "UsePreviousValue": {
      "type": "boolean"
    },
    "ResolvedValue": {
      "type": "string"
    }
  }
}