# 비밀번호 정책

## 리소스 유형

`AWS.PasswordPolicy`

## 리소스 ID 형식

암호 정책 리소스의 경우, 리소스 ID는 다음과 같이 구성됩니다:

`[AccountId]::AWS.PasswordPolicy`

예시:

`123456789012::AWS.PasswordPolicy`

이를 통해 첫 번째 콜론 앞의 문자를 확인하여 연결한 모든 AWS 계정의 암호 정책 리소스를 구분할 수 있습니다.

## 배경

암호 정책은 복잡성 요구 사항을 강제하도록 AWS 계정에 설정할 수 있습니다. 이 리소스는 다음의 모든 항목을 모델링합니다. [암호 정책 옵션](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_passwords_account-policy.html#password-policy-details) 내부 요구 사항을 준수하도록 보장합니다.

## 필드

| 필드                           | 유형    | 설명                                                                        |
| ---------------------------- | ----- | ------------------------------------------------------------------------- |
| `PasswordReusePrevention`    | `Int` | AWS가 기억하고 사용자의 재사용을 방지하는 이전 비밀번호의 수                                       |
| `AllowUsersToChangePassword` | `불리언` | 사용자가 자신의 비밀번호를 변경할 수 있는지 여부                                               |
| `AnyExist`                   | `불리언` | 계정에 암호 정책이 명시적으로 설정되어 있는지 여부를 나타냅니다. 만약 `false`, 리소스에는 다른 필드의 기본값이 표시됩니다. |

## 예시

```javascript
{
    "AccountId": "123456789012",
    "AllowUsersToChangePassword": true,
    "AnyExist": true,
    "ExpirePasswords": true,
    "HardExpiry": null,
    "MaxPasswordAge": 90,
    "MinimumPasswordLength": 14,
    "Name": "AWS.PasswordPolicy",
    "PasswordReusePrevention": 24,
    "Region": "global",
    "RequireLowercaseCharacters": true,
    "RequireNumbers": true,
    "RequireSymbols": true,
    "RequireUppercaseCharacters": true,
    "ResourceId": "123456789012::AWS.PasswordPolicy",
    "ResourceType": "AWS.PasswordPolicy",
    "Tags": null,
    "TimeCreated": null
}
```


---

# 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/password-policy.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.
