AWS CloudFormation · JSON Structure

Cloudformation Parameter Declaration Structure

Type: object Properties: 6
AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

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

Properties

ParameterKey DefaultValue ParameterType NoEcho Description ParameterConstraints

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

JSON Structure

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