Amazon Proton · JSON Structure

Amazon Proton Environment Template Version Structure

The environment template version data.

Type: object Properties: 11 Required: 7
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

EnvironmentTemplateVersion is a JSON Structure definition published by Amazon Proton, describing 11 properties, of which 7 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

arn createdAt description lastModifiedAt majorVersion minorVersion recommendedMinorVersion schema status statusMessage templateName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-structure/amazon-proton-environment-template-version-structure.json",
  "name": "EnvironmentTemplateVersion",
  "description": "The environment template version data.",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnvironmentTemplateVersionArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the version of an environment template."
        }
      ]
    },
    "createdAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the version of an environment template was created."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "A description of the minor version of an environment template."
        }
      ]
    },
    "lastModifiedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the version of an environment template was last modified."
        }
      ]
    },
    "majorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "The latest major version that's associated with the version of an environment template."
        }
      ]
    },
    "minorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "The minor version of an environment template."
        }
      ]
    },
    "recommendedMinorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "The recommended minor version of the environment template."
        }
      ]
    },
    "schema": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateSchema"
        },
        {
          "description": "The schema of the version of an environment template."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionStatus"
        },
        {
          "description": "The status of the version of an environment template."
        }
      ]
    },
    "statusMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StatusMessage"
        },
        {
          "description": "The status message of the version of an environment template."
        }
      ]
    },
    "templateName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the version of an environment template."
        }
      ]
    }
  },
  "required": [
    "arn",
    "createdAt",
    "lastModifiedAt",
    "majorVersion",
    "minorVersion",
    "status",
    "templateName"
  ]
}