> 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/s3-bucket.md).

# S3 버킷

## 리소스 유형

`AWS.S3.Bucket`

## 리소스 ID 형식

S3 버킷의 경우 리소스 ID는 ARN입니다.

`arn:aws:s3:::example-bucket`

## 배경

S3는 AWS가 데이터 정리를 위해 제공하는 오브젝트 스토리지 서비스입니다.

## 필드

| 필드             | 유형    | 설명                                                                                                                                  |          |
| -------------- | ----- | ----------------------------------------------------------------------------------------------------------------------------------- | -------- |
| `권한`           | `목록`  | 어떤 사용자, 그룹 또는 역할이 이 S3 버킷에 대한 액세스 권한을 부여받았는지와 어떤 액세스 권한을 부여받았는지를 나타냅니다.                                                             |          |
| `공개 여부`        | `불리언` | 버킷이 AWS에서 공개로 간주되는지 여부를 나타냅니다.                                                                                                      |          |
| `수명 주기 규칙`     | `목록`  | [룰](https://docs.aws.amazon.com/AmazonS3/latest/API/API_LifecycleRule.html) 데이터의 만료 및 보관을 관리하는 데 사용됩니다.                             |          |
| `암호화 규칙`       | `목록`  | [룰](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ServerSideEncryptionRule.html) S3 버킷을 암호화하는 데 사용됩니다.                        |          |
| `로깅 정책`        | `맵`   | [설명합니다](https://docs.aws.amazon.com/AmazonS3/latest/API/API_LoggingEnabled.html) 액세스 로그가 저장되는 위치를.                                  |          |
| `MFA 삭제`       | `문자열` | 버킷에서 MFA 삭제가 활성화되었는지 여부를 나타냅니다. 활성화되지 않은 경우 이 값은 비어 있습니다.                                                                           |          |
| `객체 잠금 구성`     | `맵`   | 이 [구성 옵션은](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ObjectLockConfiguration.html) 지정된 시간 동안 객체가 삭제되거나 덮어써지는 것을 방지합니다.    |          |
| `소유자`          | `맵`   | [정보](https://docs.aws.amazon.com/AmazonS3/latest/API/API_Owner.html) 버킷 소유자에 대한.                                                    |          |
| `정책`           | `문자열` | 버킷에 연결된 IAM 정책입니다.                                                                                                                  |          |
| `버전 관리`        | `문자열` | \`활성화됨                                                                                                                              | 일시 중단됨\` |
| `공개 액세스 차단 구성` | `맵`   | S3 버킷의 [공개 액세스 차단](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html) 설정이 어떻게 구성되어 있는지 나타냅니다. |          |

## 예시

```javascript
{
    "AccountId": "123456789012",
    "Arn": "arn:aws:s3:::example-bucket",
    "EncryptionRules": [
        {
            "ApplyServerSideEncryptionByDefault": {
                "KMSMasterKeyID": "1",
                "SSEAlgorithm": "aws:kms"
            }
        }
    ],
    "Grants": [
        {
            "Grantee": {
                "DisplayName": "example.user",
                "EmailAddress": null,
                "ID": "1",
                "Type": "CanonicalUser",
                "URI": null
            },
            "Permission": "FULL_CONTROL"
        }
    ],
    "IsPublic": false,
    "LifecycleRules": [
        {
            "AbortIncompleteMultipartUpload": null,
            "Expiration": null,
            "Filter": {
                "And": null,
                "Prefix": null,
                "Tag": null
            },
            "ID": "1",
            "NoncurrentVersionExpiration": {
                "NoncurrentDays": 365
            },
            "NoncurrentVersionTransitions": null,
            "Prefix": null,
            "Status": "활성화됨",
            "Transitions": null
        }
    ],
    "LoggingPolicy": {
        "TargetBucket": "example-bucket-2",
        "TargetGrants": null,
        "TargetPrefix": "/"
    },
    "MFADelete": null,
    "Name": "example-bucket",
    "ObjectLockConfiguration": null,
    "Owner": {
        "DisplayName": "example.user",
        "ID": "1"
    },
    "Policy": null,
    "PublicAccessBlockConfiguration": {
        "BlockPublicAcls": true,
        "BlockPublicPolicy": true,
        "IgnorePublicAcls": true,
        "RestrictPublicBuckets": true
    },
    "Region": "us-west-2",
    "ResourceId": "arn:aws:s3:::example-bucket",
    "ResourceType": "AWS.S3.Bucket",
    "Tags": {
        "키1": "값1",
        "키2": "값2"
    },
    "TimeCreated": "2019-01-01T00:00:00.000Z",
    "Versioning": "활성화됨"
}
```


---

# 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:

```
GET https://docs.panther.com/ko/cloud-scanning/cloud-resource-attributes/aws/s3-bucket.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.
