> For the complete documentation index, see [llms.txt](https://docs.panther.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/ecs-cluster.md).

# ECS 클러스터

## 리소스 유형

`AWS.ECS.Cluster`

## 리소스 ID 형식

리소스 ID는 클러스터 ARN입니다.

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

## 배경

Amazon ECS 클러스터는 작업 또는 서비스의 논리적 그룹입니다.

## 필드

| 필드                                  | 유형    | 설명                                |
| ----------------------------------- | ----- | --------------------------------- |
| `ActiveServicesCount`               | `정수`  | 클러스터에서 ACTIVE 상태로 실행 중인 서비스 수입니다. |
| `연결 정보`                             | `문자열` | 클러스터에 연결된 리소스입니다.                 |
| `AttachmentsStatus`                 | `문자열` | 클러스터와 연결된 용량 공급자의 상태입니다.          |
| `CapacityProviders`                 | `리스트` | 클러스터와 연결된 용량 공급자입니다.              |
| `DefaultCapacityProviderStrategy`   | `리스트` | 클러스터의 기본 용량 공급자 전략입니다.            |
| `PendingTasksCount`                 | `정수`  | 클러스터에서 PENDING 상태인 작업 수입니다.       |
| `RegisteredContainerInstancesCount` | `정수`  | 클러스터에 등록된 컨테이너 인스턴스 수입니다.         |
| `RunningTasksCount`                 | `정수`  | 클러스터에서 RUNNING 상태인 작업 수입니다.       |
| `설정`                                | `리스트` | 클러스터 설정입니다.                       |
| `Statistics`                        | `리스트` | 런치 유형별로 구분된 클러스터에 대한 추가 정보입니다.    |
| `상태`                                | `문자열` | 클러스터의 상태입니다.                      |
| `Services`                          | `리스트` | 클러스터가 사용하는 서비스입니다.                |
| `Tasks`                             | `리스트` | 클러스터 소유자에서 실행 중인 ECS 작업입니다.       |

## 예시

```javascript
{
	"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"
	]
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/ecs-cluster.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
