Amazon Proton · Schema

EnvironmentTemplateVersionSummary

A summary of the version of an environment template detail data.

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
arn object
createdAt object
description object
lastModifiedAt object
majorVersion object
minorVersion object
recommendedMinorVersion object
status object
statusMessage object
templateName object
View JSON Schema on GitHub

JSON Schema

amazon-proton-environment-template-version-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-environment-template-version-summary-schema.json",
  "title": "EnvironmentTemplateVersionSummary",
  "description": "A summary of the version of an environment template detail 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 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 version of an environment template."
        }
      ]
    },
    "recommendedMinorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "The recommended minor version of the 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 environment template."
        }
      ]
    }
  },
  "required": [
    "arn",
    "createdAt",
    "lastModifiedAt",
    "majorVersion",
    "minorVersion",
    "status",
    "templateName"
  ]
}