Amazon ECS · Schema
ContainerInstance
An Amazon EC2 instance that is registered into an ECS cluster and running the ECS agent.
AmazonAwsContainersDockerEcsOrchestration
Properties
| Name | Type | Description |
|---|---|---|
| containerInstanceArn | string | |
| ec2InstanceId | string | |
| version | integer | |
| versionInfo | object | |
| remainingResources | array | |
| registeredResources | array | |
| status | string | |
| statusReason | string | |
| agentConnected | boolean | |
| runningTasksCount | integer | |
| pendingTasksCount | integer | |
| agentUpdateStatus | string | |
| attributes | array | |
| registeredAt | number | |
| attachments | array | |
| tags | array | |
| capacityProviderName | string | |
| healthStatus | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ContainerInstance",
"type": "object",
"description": "An Amazon EC2 instance that is registered into an ECS cluster and running the ECS agent.",
"properties": {
"containerInstanceArn": {
"type": "string"
},
"ec2InstanceId": {
"type": "string"
},
"version": {
"type": "integer"
},
"versionInfo": {
"type": "object"
},
"remainingResources": {
"type": "array"
},
"registeredResources": {
"type": "array"
},
"status": {
"type": "string"
},
"statusReason": {
"type": "string"
},
"agentConnected": {
"type": "boolean"
},
"runningTasksCount": {
"type": "integer"
},
"pendingTasksCount": {
"type": "integer"
},
"agentUpdateStatus": {
"type": "string"
},
"attributes": {
"type": "array"
},
"registeredAt": {
"type": "number"
},
"attachments": {
"type": "array"
},
"tags": {
"type": "array"
},
"capacityProviderName": {
"type": "string"
},
"healthStatus": {
"type": "object"
}
}
}