Amazon Proton · Schema
ServiceTemplateSummary
Summary data of an Proton service template resource.
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD
Properties
| Name | Type | Description |
|---|---|---|
| arn | object | |
| createdAt | object | |
| description | object | |
| displayName | object | |
| lastModifiedAt | object | |
| name | object | |
| pipelineProvisioning | 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-service-template-summary-schema.json",
"title": "ServiceTemplateSummary",
"description": "Summary data of an Proton service template resource.",
"type": "object",
"properties": {
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/ServiceTemplateArn"
},
{
"description": "The Amazon Resource Name (ARN) of the service template."
}
]
},
"createdAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time when the service template was created."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "A description of the service template."
}
]
},
"displayName": {
"allOf": [
{
"$ref": "#/components/schemas/DisplayName"
},
{
"description": "The service template name as displayed in the developer interface."
}
]
},
"lastModifiedAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time when the service template was last modified."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The name of the service template."
}
]
},
"pipelineProvisioning": {
"allOf": [
{
"$ref": "#/components/schemas/Provisioning"
},
{
"description": "If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template, otherwise a service pipeline <i>isn't</i> included in the service template."
}
]
},
"recommendedVersion": {
"allOf": [
{
"$ref": "#/components/schemas/FullTemplateVersionNumber"
},
{
"description": "The recommended version of the service template."
}
]
}
},
"required": [
"arn",
"createdAt",
"lastModifiedAt",
"name"
]
}