Amazon ECS · Schema
Cluster
A regional grouping of one or more container instances on which you can run tasks and services.
AmazonAwsContainersDockerEcsOrchestration
Properties
| Name | Type | Description |
|---|---|---|
| clusterArn | string | The ARN that identifies the cluster. |
| clusterName | string | A user-generated string that you use to identify your cluster. |
| status | string | The status of the cluster. |
| registeredContainerInstancesCount | integer | The number of container instances registered into the cluster. |
| runningTasksCount | integer | The number of tasks in the cluster that are in the RUNNING state. |
| pendingTasksCount | integer | The number of tasks in the cluster that are in the PENDING state. |
| activeServicesCount | integer | The number of services in the cluster that are in an ACTIVE state. |
| statistics | array | |
| tags | array | |
| settings | array | |
| capacityProviders | array | |
| defaultCapacityProviderStrategy | array | |
| attachments | array | |
| attachmentsStatus | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Cluster",
"type": "object",
"description": "A regional grouping of one or more container instances on which you can run tasks and services.",
"properties": {
"clusterArn": {
"type": "string",
"description": "The ARN that identifies the cluster."
},
"clusterName": {
"type": "string",
"description": "A user-generated string that you use to identify your cluster."
},
"status": {
"type": "string",
"description": "The status of the cluster."
},
"registeredContainerInstancesCount": {
"type": "integer",
"description": "The number of container instances registered into the cluster."
},
"runningTasksCount": {
"type": "integer",
"description": "The number of tasks in the cluster that are in the RUNNING state."
},
"pendingTasksCount": {
"type": "integer",
"description": "The number of tasks in the cluster that are in the PENDING state."
},
"activeServicesCount": {
"type": "integer",
"description": "The number of services in the cluster that are in an ACTIVE state."
},
"statistics": {
"type": "array"
},
"tags": {
"type": "array"
},
"settings": {
"type": "array"
},
"capacityProviders": {
"type": "array"
},
"defaultCapacityProviderStrategy": {
"type": "array"
},
"attachments": {
"type": "array"
},
"attachmentsStatus": {
"type": "string"
}
}
}