Amazon CodeDeploy · Schema
GenericRevisionInfo
Information about an application revision.
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment
Properties
| Name | Type | Description |
|---|---|---|
| description | object | |
| deploymentGroups | object | |
| firstUsedTime | object | |
| lastUsedTime | object | |
| registerTime | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-generic-revision-info-schema.json",
"title": "GenericRevisionInfo",
"description": "Information about an application revision.",
"type": "object",
"properties": {
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "A comment about the revision."
}
]
},
"deploymentGroups": {
"allOf": [
{
"$ref": "#/components/schemas/DeploymentGroupsList"
},
{
"description": "The deployment groups for which this is the current target revision."
}
]
},
"firstUsedTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "When the revision was first used by CodeDeploy."
}
]
},
"lastUsedTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "When the revision was last used by CodeDeploy."
}
]
},
"registerTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "When the revision was registered with CodeDeploy."
}
]
}
}
}