Amazon Proton · JSON Structure

Amazon Proton Environment Template Filter Structure

A search filter for environment templates.

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

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

Properties

majorVersion 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-filter-structure.json",
  "name": "EnvironmentTemplateFilter",
  "description": "A search filter for environment templates.",
  "type": "object",
  "properties": {
    "majorVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TemplateVersionPart"
        },
        {
          "description": "Include <code>majorVersion</code> to filter search for a major version."
        }
      ]
    },
    "templateName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "Include <code>templateName</code> to filter search for a template name."
        }
      ]
    }
  },
  "required": [
    "majorVersion",
    "templateName"
  ]
}