Amazon Proton · Schema
EnvironmentTemplate
The environment template data.
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| createdAt | object | |
| description | object | |
| displayName | object | |
| encryptionKey | object | |
| lastModifiedAt | object | |
| name | object | |
| provisioning | object | |
| recommendedVersion | object |
JSON Schema
{
"$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-schema.json",
"title": "EnvironmentTemplate",
"description": "The environment template data.",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/EnvironmentTemplateArn"
},
{
"description": "The Amazon Resource Name (ARN) of the environment template."
}
]
},
"createdAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time when the environment template was created."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "A description of the environment template."
}
]
},
"displayName": {
"allOf": [
{
"$ref": "#/components/schemas/DisplayName"
},
{
"description": "The name of the environment template as displayed in the developer interface."
}
]
},
"encryptionKey": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The customer provided encryption key for the environment template."
}
]
},
"lastModifiedAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time when the environment template was last modified."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The name of the environment template."
}
]
},
"provisioning": {
"allOf": [
{
"$ref": "#/components/schemas/Provisioning"
},
{
"description": "When included, indicates that the environment template is for customer provisioned and managed infrastructure."
}
]
},
"recommendedVersion": {
"allOf": [
{
"$ref": "#/components/schemas/FullTemplateVersionNumber"
},
{
"description": "The ID of the recommended version of the environment template."
}
]
}
},
"required": [
"arn",
"createdAt",
"lastModifiedAt",
"name"
]
}