Amazon Proton · JSON Structure

Amazon Proton Update Environment Template Version Input Structure

UpdateEnvironmentTemplateVersionInput schema from Amazon Proton API

Type: object Properties: 5 Required: 3
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

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

Properties

description majorVersion minorVersion status 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-update-environment-template-version-input-structure.json",
  "name": "UpdateEnvironmentTemplateVersionInput",
  "description": "UpdateEnvironmentTemplateVersionInput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "A description of environment template version to update."
        }
      ]
    },
    "majorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "To update a major version of an environment template, include <code>major Version</code>."
        }
      ]
    },
    "minorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "To update a minor version of an environment template, include <code>minorVersion</code>."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionStatus"
        },
        {
          "description": "The status of the environment template minor version to update."
        }
      ]
    },
    "templateName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the environment template."
        }
      ]
    }
  },
  "required": [
    "majorVersion",
    "minorVersion",
    "templateName"
  ]
}