Amazon Proton · Schema

ListEnvironmentTemplateVersionsOutput

ListEnvironmentTemplateVersionsOutput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
nextToken object
templateVersions object
View JSON Schema on GitHub

JSON Schema

amazon-proton-list-environment-template-versions-output-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-list-environment-template-versions-output-schema.json",
  "title": "ListEnvironmentTemplateVersionsOutput",
  "description": "ListEnvironmentTemplateVersionsOutput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A token that indicates the location of the next major or minor version in the array of major or minor versions of an environment template, after the list of major or minor versions that was previously requested."
        }
      ]
    },
    "templateVersions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnvironmentTemplateVersionSummaryList"
        },
        {
          "description": "An array of major or minor versions of an environment template detail data."
        }
      ]
    }
  },
  "required": [
    "templateVersions"
  ]
}