Amazon Proton · Schema

ListEnvironmentTemplateVersionsInput

ListEnvironmentTemplateVersionsInput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
majorVersion object
maxResults object
nextToken object
templateName object
View JSON Schema on GitHub

JSON Schema

amazon-proton-list-environment-template-versions-input-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-input-schema.json",
  "title": "ListEnvironmentTemplateVersionsInput",
  "description": "ListEnvironmentTemplateVersionsInput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "majorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "<p>To view a list of minor of versions under a major version of an environment template, include <code>major Version</code>.</p> <p>To view a list of major versions of an environment template, <i>exclude</i> <code>major Version</code>.</p>"
        }
      ]
    },
    "maxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxPageResults"
        },
        {
          "description": "The maximum number of major or minor versions of an environment template to list."
        }
      ]
    },
    "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."
        }
      ]
    },
    "templateName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the environment template."
        }
      ]
    }
  },
  "required": [
    "templateName"
  ]
}