ECS Cluster

Amazon Elastic Container Service Cluster

Resource Type

AWS.ECS.Cluster

Resource ID Format

The resource ID is the cluster ARN.

arn:aws:ecs:us-east-1:123456789012:cluster/panther-web-cluster

Background

An Amazon ECS cluster is a logical grouping of tasks or services.

Fields

Example

{
	"AccountId": "123456789012",
	"ActiveServicesCount": 1,
	"Arn": "arn:aws:ecs:us-west-2:123456789012:cluster/panther-web-cluster",
	"Name": "panther-web-cluster",
	"PendingTasksCount": 0,
	"Region": "us-west-2",
	"RegisteredContainerInstancesCount": 0,
	"ResourceId": "arn:aws:ecs:us-west-2:123456789012:cluster/panther-web-cluster",
	"ResourceType": "AWS.ECS.Cluster",
	"RunningTasksCount": 1,
	"Services": [
		"panther-web"
	],
	"Status": "ACTIVE",
	"Tags": {
		"Application": "Panther",
		"PantherVersion": "1.38",
		"Stack": "panther-web",
		"aws:cloudformation:logical-id": "WebApplicationCluster",
		"aws:cloudformation:stack-id": "arn:aws:cloudformation:us-west-2:123456789012:stack/panther-Web-Stack",
		"aws:cloudformation:stack-name": "panther-Web"
	},
	"Tasks": [
		"arn:aws:ecs:us-west-2:123456789012:task/panther-web-cluster"
	]
}

Last updated