AWS CloudFormation · Schema

ParameterDeclaration

AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

Properties

Name Type Description
ParameterKey string
DefaultValue string
ParameterType string
NoEcho boolean
Description string
ParameterConstraints object
View JSON Schema on GitHub

JSON Schema

cloudformation-parameter-declaration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ParameterDeclaration",
  "type": "object",
  "properties": {
    "ParameterKey": {
      "type": "string"
    },
    "DefaultValue": {
      "type": "string"
    },
    "ParameterType": {
      "type": "string"
    },
    "NoEcho": {
      "type": "boolean"
    },
    "Description": {
      "type": "string"
    },
    "ParameterConstraints": {
      "type": "object"
    }
  }
}