> 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/ec2-volume.md).

# EC2 볼륨

## 리소스 유형

`AWS.EC2.Volume`

## 리소스 ID 형식

EC2 볼륨의 리소스 ID는 ARN입니다.

`arn:aws:ec2:us-west-2:123456789012:volume/vol-1`

## 배경

이 리소스는 AWS EC2 볼륨의 스냅샷을 나타냅니다.

## 필드

| 필드           | 유형    | 설명                                                                                         |
| ------------ | ----- | ------------------------------------------------------------------------------------------ |
| `연결 정보`      | `리스트` | 이 볼륨이 연결된 장치                                                                               |
| `가용 영역`      | `문자열` | 볼륨의 가용 영역.                                                                                 |
| `암호화됨`       | `불리언` | 볼륨이 암호화되었는지 여부를 나타냅니다.                                                                     |
| `IOPS`       | `정수`  | 초당 I/O 작업 수(IOPS).                                                                         |
| `KmsKeyId`   | `문자열` | 볼륨 암호화 키를 보호하는 데 사용된 AWS Key Management Service(AWS KMS) 고객 마스터 키(CMK)의 Amazon 리소스 이름(ARN) |
| `크기`         | `정수`  | 볼륨의 크기(GiB 단위).                                                                            |
| `SnapshotId` | `문자열` | 볼륨이 생성된 스냅샷.                                                                               |
| `VolumeType` | `문자열` | 볼륨 유형.                                                                                     |
| `스냅샷`        | `리스트` | 스냅샷 설명이 포함된 목록.                                                                            |
| `상태`         | `문자열` | 볼륨 상태.                                                                                     |

```javascript
{
    "AccountId": "123456789012",
    "Arn": "arn:aws:ec2:us-west-2:123456789012:volume/vol-1",
    "Attachments": [
        {
            "AssociatedResource": null,
            "AttachTime": "2019-01-01T00:00:00Z",
            "DeleteOnTermination": false,
            "Device": "/dev/sdf",
            "InstanceId": "i-1",
            "InstanceOwningService": null,
            "State": "연결됨",
            "VolumeId": "vol-1"
        }
    ],
    "AvailabilityZone": "us-west-2b",
    "Encrypted": false,
    "Id": "vol-1",
    "Iops": 100,
    "KmsKeyId": null,
    "Region": "us-west-2",
    "ResourceId": "arn:aws:ec2:us-west-2:123456789012:volume/vol-1",
    "ResourceType": "AWS.EC2.Volume",
    "Size": 1,
    "SnapshotId": "snap-1",
    "Snapshots": [
        {
            "AvailabilityZone": null,
            "CompletionDurationMinutes": null,
            "CompletionTime": "2025-12-18T17:45:29.945Z",
            "CreateVolumePermissions": null,
            "DataEncryptionKeyId": null,
            "Description": "볼륨 스냅샷",
            "Encrypted": false,
            "FullSnapshotSizeInBytes": 1728577536,
            "KmsKeyId": null,
            "OutpostArn": null,
            "OwnerAlias": null,
            "OwnerId": "123456789012",
            "Progress": "100%",
            "RestoreExpiryTime": null,
            "SnapshotId": "snap-1",
            "SseType": null,
            "StartTime": "2019-01-01T00:00:00.000Z",
            "State": "완료됨",
            "StateMessage": null,
            "StorageTier": "표준",
            "Tags": null,
            "TransferType": "표준",
            "VolumeId": "vol-1",
            "VolumeSize": 1
        }
    ],
    "State": "사용 중",
    "Tags": {
        "Key1": "Value1",
        "Key2": "Value2"
    },
    "TimeCreated": "2019-01-01T00:00:00.000Z",
    "VolumeType": "gp2"
}
```


---

# 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/ec2-volume.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.
