Amazon CodeDeploy · Schema
InstanceInfo
Information about an on-premises instance.
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment
Properties
| Name | Type | Description |
|---|---|---|
| instanceName | object | |
| iamSessionArn | object | |
| iamUserArn | object | |
| instanceArn | object | |
| registerTime | object | |
| deregisterTime | object | |
| tags | 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-instance-info-schema.json",
"title": "InstanceInfo",
"description": "Information about an on-premises instance.",
"type": "object",
"properties": {
"instanceName": {
"allOf": [
{
"$ref": "#/components/schemas/InstanceName"
},
{
"description": "The name of the on-premises instance."
}
]
},
"iamSessionArn": {
"allOf": [
{
"$ref": "#/components/schemas/IamSessionArn"
},
{
"description": "The ARN of the IAM session associated with the on-premises instance."
}
]
},
"iamUserArn": {
"allOf": [
{
"$ref": "#/components/schemas/IamUserArn"
},
{
"description": "The IAM user ARN associated with the on-premises instance."
}
]
},
"instanceArn": {
"allOf": [
{
"$ref": "#/components/schemas/InstanceArn"
},
{
"description": "The ARN of the on-premises instance."
}
]
},
"registerTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The time at which the on-premises instance was registered."
}
]
},
"deregisterTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "The tags currently associated with the on-premises instance."
}
]
}
}
}