> 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 삭제가 Enabled인지 여부를 나타냅니다. 그렇지 않으면 이 값은 비어 있습니다.                                                                           |             |
| `객체 잠금 구성`     | `맵`   | 이러한 [구성 옵션](https://docs.aws.amazon.com/AmazonS3/latest/API/API_ObjectLockConfiguration.html) 지정된 시간 동안 객체가 삭제되거나 덮어써지는 것을 방지합니다. |             |
| `소유자`          | `맵`   | [정보](https://docs.aws.amazon.com/AmazonS3/latest/API/API_Owner.html) 버킷 소유자에 대한.                                                  |             |
| `정책`           | `문자열` | 버킷에 연결된 IAM 정책.                                                                                                                   |             |
| `버전 관리`        | `문자열` | \`ENABLED                                                                                                                         | SUSPENDED\` |
| `공개 액세스 차단 구성` | `맵`   | 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": "Enabled",
            "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": {
        "Key1": "Value1",
        "Key2": "Value2"
    },
    "TimeCreated": "2019-01-01T00:00:00.000Z",
    "Versioning": "Enabled"
}
```


---

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