> 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/iam-group.md).

# IAM 그룹

## 리소스 유형

`AWS.IAM.Group`

## 리소스 ID 형식

IAM 그룹의 경우 리소스 ID는 ARN입니다.

`arn:aws:iam::123456789012:group/example-group`

## 배경

IAM 그룹은 IAM 사용자들의 모음입니다. 그룹을 사용하면 여러 사용자에 대한 권한을 지정할 수 있어 해당 사용자들의 권한을 더 쉽게 관리할 수 있습니다.

## 필드

| 필드           | 유형    | 설명                                        |
| ------------ | ----- | ----------------------------------------- |
| `사용자`        | `리스트` | 그룹에 속한 IAM 사용자                            |
| `인라인 정책`     | `맵`   | PolicyName을 키로 하고 정책 문서를 값으로 하는 인라인 정책 매핑 |
| `관리형 정책 ARN` | 리스트   | 그룹에 연결된 AWS 관리형 정책 ARN                    |
| `관리형 정책 이름`  | `리스트` | 그룹에 연결된 AWS 관리형 정책 이름                     |
| `Path`       | `문자열` | 그룹 경로                                     |

## 예시

```javascript
{
    "AccountId": "123456789012",
    "Arn": "arn:aws:iam::123456789012:group/example-group",
    "Id": "111",
    "InlinePolicies": null,
    "ManagedPolicyARNs": [
        "arn:aws:iam::aws:policy/IAMUserChangePassword"
    ],
    "Name": "example-group",
    "Path": "/",
    "Region": "global",
    "ResourceId": "arn:aws:iam::123456789012:group/example-group",
    "ResourceType": "AWS.IAM.Group",
    "Tags": null,
    "TimeCreated": "2019-01-01T00:00:00.000Z",
    "Users": [
        {
            "Arn": "arn:aws:iam::123456789012:user/example-user",
            "CreateDate": "2019-01-01T00:00:00Z",
            "PasswordLastUsed": "2019-01-01T00:00:00Z",
            "Path": "/",
            "PermissionsBoundary": null,
            "Tags": null,
            "UserId": "2222",
            "UserName": "example-user"
        }
    ]
}
```


---

# 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/iam-group.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.
