# IAM 그룹

## 리소스 유형

`AWS.IAM.Group`

## 리소스 ID 형식

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

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

## 배경

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

## 필드

| 필드                   | 유형    | 설명                                      |
| -------------------- | ----- | --------------------------------------- |
| `사용자`                | `목록`  | 그룹의 IAM 사용자 구성원                         |
| `인라인 정책`             | `맵`   | PolicyName을 키로 하여 정책 문서에 연결된 인라인 정책의 매핑 |
| `ManagedPolicyARNs`  | 목록    | 그룹에 연결된 AWS 관리형 정책 ARN                  |
| `ManagedPolicyNames` | `목록`  | 그룹에 연결된 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: 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:

```
GET https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/iam-group.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
