

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# Price List Bulk API를 사용하여 AWS 가격표 파일 가져오기
<a name="using-the-aws-price-list-bulk-api"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

다음 작업을 수행하려는 경우 Price List Bulk API를 사용하는 것이 좋습니다.
+  AWS 서비스에 대한 많은 양의 제품 및 가격 정보를 사용합니다.
+ 대량 처리와 같이 AWS 서비스에 대한 처리량이 높은 제품 및 가격 정보를 사용합니다.

또한 Price List Query API에서 사용 사례에 대한 충분한 처리량과 할당량을 제공하지 않는 경우에도 Price List Bulk API를 사용합니다.<a name="using-the-aws-price-list-bulk-api-fetching-price-list-files"></a>

 AWS Price List Bulk API를 사용하여 프로그래밍 방식으로 가격표 파일을 찾고 다운로드하는 것이 좋습니다. 가격표 파일의 URL을 가져오려면 다음 단계를 참조하세요.

 AWS Price List Bulk API를 사용하지 않으려면 가격표 파일을 수동으로 다운로드할 수 있습니다. 자세한 내용은 [가격표 파일을 수동으로 가져오기](using-the-aws-price-list-bulk-api-fetching-price-list-files-manually.md) 단원을 참조하십시오.

### 1단계: 사용 가능한 결과 AWS 서비스
<a name="price-bulk-api-step-1-find-available-services"></a>

`DescribeServices` API 작업을 사용하여 Price List Bulk API에서 지원하는 사용 가능한 모든 AWS 서비스 를 찾을 수 있습니다. 이 API 작업은 서비스 목록의 `ServiceCode` 값을 반환합니다. 나중에 이 값을 사용하여 관련 가격표 파일을 찾을 수 있습니다.

**Example 예: 사용 가능한 서비스 찾기**  
다음 명령은 사용 가능한 AWS 서비스를 찾는 방법을 보여줍니다.  

```
aws pricing describe-services --region us-east-1
```
 AWS 리전 는 Price List Bulk API의 API 엔드포인트입니다. 엔드포인트는 제품 또는 서비스 속성과 관련이 없습니다.  
**응답**  

```
{
    "FormatVersion": "aws_v1", 
    "NextToken": "abcdefg123", 
    "Services": [ 
        {
            "AttributeNames": [ 
                "volumeType", 
                "maxIopsvolume", 
                "instanceCapacity10xlarge", 
                "locationType", 
                "operation" 
            ], 
            "ServiceCode": "AmazonEC2" 
        },
        {
            "AttributeNames": [ 
                "productFamily", 
                "volumeType", 
                "engineCode", 
                "memory" 
            ], 
            "ServiceCode": "AmazonRDS" 
        },
        {...} 
    ] 
}
```

이 API 작업에 대한 자세한 내용은 API 참조의 [https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_DescribeServices.html](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_DescribeServices.html) 및 [언어별 AWS SDKs](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_DescribeServices.html#API_pricing_DescribeServices_SeeAlso). *AWS 결제 및 비용 관리 * 

**참고**  
`DescribeServices` API는 현재 Savings Plans에 `serviceCodes` 대해를 반환하지 않지만 후속 API 호출에서 Savings Plans`serviceCodes`을 사용하려면 다음이 필요합니다.  


| ServiceCode | SavingsPlanCode | 
| --- | --- | 
| ComputeSavingsPlans | AWSComputeSavingsPlan | 
| MachineLearningSavingsPlans | AWSMachineLearningSavingsPlans | 
| DatabaseSavingsPlans | AWSDatabaseSavingsPlans | 
`ListPriceLists` 및 `GetPriceListFileUrl` API 작업을 수행할 때 `ServiceCode` 값을 사용합니다. `SavingsPlanCode`는 APIs를 사용하는 대신 가격표 파일을 수동으로 다운로드하는 경우에만 필요합니다.

### 2단계: 사용 가능한에 대한 가격표 파일 찾기 AWS 서비스
<a name="price-list-bulk-api-step-2-find-available-price-list-files"></a>

`ListPriceLists` API 작업을 사용하여 볼 수 있는 권한이 있는 가격표 참조 목록을 가져올 수 있습니다. 결과를 필터링하려면 `ServiceCode`, `CurrencyCode` 및 `EffectiveDate` 파라미터를 지정할 수 있습니다.

 AWS 리전 는 Price List Bulk API의 API 엔드포인트입니다. 엔드포인트는 제품 또는 서비스 속성과 관련이 없습니다.

#### 가격표 파일을 찾는 예제
<a name="price-list-bulk-api-examples-find-price-list-files"></a>

**Example 예: 모든에 대한 가격표 파일 찾기 AWS 리전**  
`--region-code` 파리미터를 지정하지 않는 경우 API 작업에서는 사용 가능한 모든 AWS 리전에서 가격표 파일 참조를 반환합니다.  

```
aws pricing list-price-lists --service-code AmazonRDS --currency-code USD --effective-date "2023-04-03 00:00"
```
**응답**  

```
{
   "NextToken": "abcd1234",
   "PriceLists": [ 
      { 
         "CurrencyCode": "USD",
         "FileFormats": [ "json", "csv" ],
         "PriceListArn": "arn:aws:pricing:::price-list/aws/AmazonRDS/USD/20230328234721/us-east-1",
         "RegionCode": "us-east-1"
      },
      { 
         "CurrencyCode": "USD",
         "FileFormats": [ "json", "csv" ],
         "PriceListArn": "arn:aws:pricing:::price-list/aws/AmazonRDS/USD/20230328234721/us-west-2",
         "RegionCode": "us-west-2"
      },
      ...
   ]
}
```

**Example 예: 특정 리전의 가격표 파일 찾기**  
`RegionCode` 파리미터를 지정하는 경우 API 작업에서는 해당 리전과 관련된 가격표 파일 참조를 반환합니다. 과거 가격표 파일을 찾으려면 `EffectiveDate` 파라미터를 사용합니다. 예를 들어, 과거 날짜를 지정하여 특정 가격표 파일을 찾을 수 있습니다.  
그런 다음 응답에서 [https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetPriceListFileUrl.html](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetPriceListFileUrl.html) API 작업에 `PriceListArn` 값을 사용하여 원하는 가격표 파일을 가져올 수 있습니다.  

```
aws pricing list-price-lists --service-code AmazonRDS --currency-code USD --region-code us-west-2 --effective-date "2023-04-03 00:00"
```
**응답**  

```
{
   "PriceLists": [ 
      { 
         "CurrencyCode": "USD",
         "FileFormats": [ "json", "csv" ],
         "PriceListArn": "arn:aws:pricing:::price-list/aws/AmazonRDS/USD/20230328234721/us-west-2",
         "RegionCode": "us-west-2"
      }
   ]
}
```

이 API 작업에 대한 자세한 내용은 API 참조의 [https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_ListPriceLists.html](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_ListPriceLists.html) 및 [언어별 AWS SDKs](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_ListPriceLists.html#API_pricing_ListPriceLists_SeeAlso). *AWS 결제 및 비용 관리 * 

### 3단계: 특정 가격표 파일 가져오기
<a name="price-list-bulk-api-step-3-getting-specific-price-list"></a>

`GetPriceListFileUrl` API 작업을 사용하여 가격표 파일의 URL을 가져올 수 있습니다. 이 URL은 [1단계](#price-bulk-api-step-1-find-available-services)와 [2단계](#price-list-bulk-api-step-2-find-available-price-list-files)의 `ListPriceLists` 응답에서 검색한 `PriceListArn` 및 `FileFormats` 값에 기반합니다.

**Example 예: 특정 가격표 파일 가져오기**  
다음 명령은 Amazon RDS용 특정 가격표 파일의 URL을 가져옵니다.  

```
aws pricing get-price-list-file-url --price-list-arn arn:aws:pricing:::price-list/aws/AmazonRDS/USD/20230328234721/us-east-1 --file-format json --region us-east-1
```
**응답**  

```
{
    "Url": "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/20230328234721/us-east-1/index.json"
}
```
응답에서 이 URL을 사용하여 가격표 파일을 다운로드할 수 있습니다.

이 API 작업에 대한 자세한 내용은 다음 주제를 참조하세요.
+  [https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetPriceListFileUrl.html](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetPriceListFileUrl.html) *AWS 결제 및 비용 관리 API 참조*의 및 [언어별 AWS SDKs](https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_pricing_GetPriceListFileUrl.html#API_pricing_GetPriceListFileUrl_SeeAlso) 
+ [가격표 파일 읽기](bulk-api-reading-price-list-files.md)

# 가격표 파일을 수동으로 가져오기
<a name="using-the-aws-price-list-bulk-api-fetching-price-list-files-manually"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

 AWS Price List Bulk API를 사용하여 프로그래밍 방식으로 가격표 파일을 찾고 다운로드하는 것이 좋습니다. 자세한 내용은 [1단계: 사용 가능한 결과 AWS 서비스](using-the-aws-price-list-bulk-api.md#price-bulk-api-step-1-find-available-services) 단원을 참조하십시오.

 AWS Price List Bulk API를 사용하지 않으려면 가격표 파일을 수동으로 다운로드할 수 있습니다. 필요한 정보가 이미 있는 경우 관련 주제로 건너뛸 수 있습니다.

**Topics**

## 1단계: 사용 가능한 결과 AWS 서비스
<a name="fetching-price-list-manually-step-1"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

서비스 인덱스 파일을 사용하여 AWS Price List Bulk API에서 제공하는 사용 가능한 절감형 플랜 AWS 서비스 과 Savings Plans을 찾을 수 있습니다.

서비스 인덱스 파일을 다운로드하려면 다음 URL로 이동하세요.

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/index.json
```

서비스 인덱스 파일에서 서비스를 검색하여 해당 가격을 찾을 수 있습니다. 서비스별 가격표 파일을 다운로드하려면 `offerCode` 또는 `serviceCode`를 사용합니다.

자세한 내용은 다음 항목을 참조하세요.
+ [서비스 인덱스 파일 읽기](bulk-api-reading-price-list-files.md#reading-service-index-files)
+ [1단계: 사용 가능한 결과 AWS 서비스](using-the-aws-price-list-bulk-api.md#price-bulk-api-step-1-find-available-services)

## 2단계:에 사용 가능한 버전 찾기 AWS 서비스
<a name="fetching-price-list-files-manually-step-2"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

[1단계](#fetching-price-list-manually-step-1)에서 검색한 AWS 서비스 또는 Savings Plan의 경우 [서비스 버전 인덱스 파일을 사용하여 가격표의 모든 기록 버전을](using-the-aws-price-list-bulk-api-reading-price-list-files-reading-service-version-index-file.md) 찾을 수 있습니다.

서비스 버전 인덱스 파일을 다운로드하려면 `serviceCode` 또는 `savingsPlanCode`를 사용합니다. `serviceCode` 및 `savingsPlanCode`에 대한 값을 찾으려면 [1단계: 사용 가능한 결과 AWS 서비스](using-the-aws-price-list-bulk-api.md#price-bulk-api-step-1-find-available-services) 섹션을 참조하세요.

에 대한 서비스 버전 인덱스 파일을 다운로드하려면 다음 URL로 AWS 서비스이동합니다. *<serviceCode>*를 자신의 정보로 바꿉니다.

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/<serviceCode>/index.json
```

예를 들어, Amazon Elastic Compute Cloud(Amazon EC2)는 다음과 같은 URL로 표시됩니다.

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/index.json
```

**참고**  
서비스 버전 인덱스 파일에서 사용할 수 있는 버전 외에도 `current`라는 버전도 있습니다. `current` 버전은 특정에 대한 가격표 파일의 최신 버전을 가리킵니다 AWS 서비스.

절감형 플랜에 대한 최신 서비스 버전 인덱스 파일을 다운로드하려면 URL에 `savingsPlanCode` 및 `current`를 지정합니다. *<savingsPlanCode>*를 자신의 정보로 바꿉니다.

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/<savingsPlanCode>/current/index.json
```

예를 들어의 현재 버전`AWSComputeSavingsPlan`은 다음 URL과 같습니다.

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/current/index.json
```

자세한 내용은 [서비스 버전 인덱스 파일 읽기](using-the-aws-price-list-bulk-api-reading-price-list-files-reading-service-version-index-file.md) 단원을 참조하십시오.

## 3단계: 버전 AWS 리전 에 사용 가능한 결과 AWS 서비스
<a name="fetching-price-list-files-manually-step-3"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

[이전 단계의](#fetching-price-list-files-manually-step-2) AWS 서비스 또는 Savings Plan 버전의 경우에서 구매할 제품을 제공하는 모든 AWS 리전 및 엣지 로케이션을 AWS 서비스 찾을 수 있습니다.

에 대한 서비스 리전 인덱스 파일을 다운로드하려면 다음 URL로 AWS 서비스이동합니다. *<serviceCode>* 및 *<version>*을 자신의 정보로 바꿉니다.

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/<serviceCode>/<version>/region_index.json
```

예를 들어 `AmazonRDS`에 대한 서비스 코드 및 `current` 버전의 URL은 다음과 같습니다.

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/current/region_index.json
```

절감형 플랜에 대한 서비스 리전 인덱스 파일을 다운로드하려면 다음 URL로 이동하세요. *<savingsPlanCode>*를 자신의 정보로 바꿉니다.

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/<savingsPlanCode>/current/region_index.json
```

예를 들어 `AWSComputeSavingsPlan`에 대한 절감형 플랜 및 해당 `current` 버전의 URL은 다음과 같습니다.

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/current/region_index.json
```

자세한 내용은 [서비스 리전 인덱스 파일 읽기](reading-service-region-index-files.md) 단원을 참조하십시오.

## 4단계: AWS 리전 및 버전의 사용 가능한 가격표 찾기 AWS 서비스
<a name="fetching-price-list-files-manually-step-4"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

이전 단계에서는 AWS 서비스에 대한 다음과 같은 정보를 검색했습니다.
+ 서비스 코드
+ 절감형 플랜 코드
+ 버전
+ AWS 리전

다음으로 이 정보를 사용하여 서비스 가격표 파일에서 가격을 찾을 수 있습니다. 이러한 파일은 CSV 및 JSON 형식으로 제공됩니다.

**Contents**
+ [서비스 가격표 파일 찾기](#fetching-price-list-files-manually-step-4-finding-service-price-list-files)
+ [절감형 플랜에 대한 서비스 가격표 파일 찾기](#find-service-price-list-files-for-savings-plans)

### 서비스 가격표 파일 찾기
<a name="fetching-price-list-files-manually-step-4-finding-service-price-list-files"></a>

서비스 가격표 파일에서는 다음과 같은 서비스 관련 세부 정보를 제공합니다.
+ 해당 파일에 있는 가격의 유효 날짜
+ 서비스 가격표 버전
+ 제공되는 제품의 목록과 세부 정보 및 JSON 및 CSV 형식의 가격

다음 URL에서 URL을 변경하여 원하는 형식(JSON 또는 CSV)을 지정할 수 있습니다.

서비스 가격표 파일을 다운로드하려면 다음 URL로 이동하세요. *user input placeholder*를 사용자의 정보로 바꿉니다.

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/<serviceCode>/<version>/<regionCode>/index.<format>
```

다음은 Amazon Relational Database Service(RDS)에 대한 예제입니다. 이 서비스는 URL에 AmazonRDS로 표시됩니다.

**Example 예: Amazon RDS용 가격표 파일의 최신 버전**  
미국 동부(오하이오) 리전의 Amazon RDS에 대한 가격표 파일의 최신 버전을 가져오려면 다음 URL을 사용합니다.  
CSV 형식  

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/current/us-east-2/index.csv
```
JSON 형식  

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/current/us-east-2/index.json
```

**Example 예: Amazon RDS용 가격표 파일의 특정 버전**  
미국 동부(오하이오) 리전의 Amazon RDS에 대한 가격표 파일의 특정 버전을 가져오려면 다음 URL을 사용합니다.  
CSV 형식  

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/20230328234721/us-east-2/index.csv
```
JSON 형식  

```
https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/20230328234721/us-east-2/index.json
```

### 절감형 플랜에 대한 서비스 가격표 파일 찾기
<a name="find-service-price-list-files-for-savings-plans"></a>

절감형 플랜의 서비스 가격표 파일에서는 다음과 같은 절감형 플랜 관련 세부 정보를 제공합니다.
+ 해당 파일에 있는 가격의 유효 날짜
+ 서비스 가격표 버전
+ 제공되는 제품의 목록과 세부 정보 및 JSON 및 CSV 형식의 가격

다음 URL에서 URL을 변경하여 원하는 형식(JSON 또는 CSV)을 지정할 수 있습니다.

절감형 플랜의 서비스 가격표 파일을 다운로드하려면 다음 URL을 사용합니다. *user input placeholder*를 사용자의 정보로 바꿉니다.

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/<savingsPlanCode>/<version>/<regionCode>/index.json
```

**Example 예: Amazon SageMaker AI에 대한 서비스 가격표 파일**  
미국 동부(오하이오) 리전의 SageMaker AI(`AWSComputeSavingsPlan`)에 대한 가격표 파일의 특정 버전(`20230509202901`)을 가져오려면 다음 URL을 사용합니다.  
CSV 형식  

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/20230509202901/us-east-2/index.csv
```
JSON 형식  

```
https://pricing.us-east-1.amazonaws.com/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/20230509202901/us-east-2/index.json
```

자세한 내용은 [서비스 가격표 파일 읽기](reading-service-price-list-files.md) 단원을 참조하십시오.

# 가격표 파일 읽기
<a name="bulk-api-reading-price-list-files"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

이 섹션에서는 가격표 파일을 읽는 방법을 알아봅니다. 여기에는 서비스 인덱스 파일, 서비스 버전 인덱스 파일, 리전 인덱스 파일, 및 AWS 서비스 Savings Plans 사용 사례 모두에 대한 가격표 파일이 포함됩니다.

## 서비스 인덱스 파일 읽기
<a name="reading-service-index-files"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

서비스 인덱스 파일이 있으면 이 파일을 사용하여 서비스 가격표 파일을 찾을 수 있습니다.

서비스 인덱스 파일은 JSON 파일로 사용할 수 있습니다. 이 파일을 읽으려면 텍스트 애플리케이션이나 JSON을 구문 분석하는 프로그램을 사용할 수 있습니다.

서비스 인덱스 파일의 두 개 기본 섹션은 다음과 같습니다.
+  서비스 인덱스 파일에 대한 메타데이터
+  AWS Marketplace를 통해 또는를 AWS 제공하는 서비스의 목록입니다.

서비스 인덱스 파일에 대한 정보에는 가격을 다운로드할 수 있는 URL 및 해당 서비스의 서비스 리전 인덱스 파일에 대한 URL이 포함됩니다.

### 예: 서비스 인덱스 파일
<a name="service-index-file-example"></a>

서비스 인덱스 파일은 다음과 같습니다.

```
{
   "formatVersion":"The version number for the offer index format",
   "disclaimer":"The disclaimers for this offer index",
   "publicationDate":"The publication date of this offer index",
   "offers":{
      "firstService":{
         "offerCode":"The service that this price list is for",
         "currentVersionUrl":"The URL for this offer file",
         "currentRegionIndexUrl":"The URL for the regional offer index file",
         "savingsPlanVersionIndexUrl":"The URL for the Savings Plan index file (if applicable)"
      },
      "secondService":{
         "offerCode": ...,
         "currentVersionUrl": ...,
         "currentRegionIndexUrl": ...,
         "savingsPlanVersionIndexUrl":...
      },
      ...
   },
}
```

### 서비스 인덱스 파일 정의
<a name="offer-index-termdef-version-2"></a>

다음 목록은 서비스 인덱스 파일에서 사용되는 용어를 정의합니다.

**FormatVersion**  
서비스 버전 인덱스 파일의 형식 버전을 추적하는 속성. 구조가 변경되면 파일의 `formatVersion`이 업데이트됩니다. 예를 들어 버전이 `v1`에서 `v2`로 변경됩니다.

**면책 조항**  
서비스 버전 인덱스 파일에 적용되는 모든 면책 조항

**PublicationDate**  
서비스 버전 인덱스 파일이 게시된 날짜 및 시간(UTC 형식). 예를 들어, `2015-04-09T02:22:05Z` 및 `2015-09-10T18:21:05Z`와 같을 수 있습니다.

**제안**  
사용 가능한 서비스 가격표 파일 목록

**Offers:OfferCode**  
 AWS 서비스 제품의 고유 코드입니다. 예를 들어, `AmazonEC2` 또는`AmazonS3`일 수 있습니다. `OfferCode`는 인덱스의 검색 키로 사용됩니다.

**Offers:CurrentVersionUrl**  
최신 서비스 가격표 파일을 다운로드할 수 있는 URL

**Offers:currentRegionIndexUrl**  
리전별로 사용 가능한 서비스 가격표 파일 목록

**Offers:savingsPlanVersionIndexUrl**  
적용 가능한 Savings Plan 제안 목록.

# 서비스 버전 인덱스 파일 읽기
<a name="using-the-aws-price-list-bulk-api-reading-price-list-files-reading-service-version-index-file"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

서비스 버전 인덱스 파일은 JSON 형식으로 제공됩니다. 이 파일을 읽으려면 텍스트 프로그램이나 JSON을 구문 분석하는 애플리케이션을 사용할 수 있습니다.

서비스 버전 인덱스 파일은 두 개의 기본 섹션으로 구성되어 있습니다.
+ 서비스 버전 인덱스 파일에 대한 메타데이터
+  AWS 서비스에 사용할 수 있는 가격표 파일의 모든 버전 목록

서비스 버전에 대한 정보에는 지정된 기간에 해당 서비스의 가격을 다운로드하는 데 사용할 수 있는 URL이 포함됩니다.

**Topics**
+ [에 대한 서비스 버전 인덱스 파일 AWS 서비스](service-version-index-file-for-aws-service.md)
+ [절감형 플랜에 대한 서비스 버전 인덱스 파일](service-version-index-file-for-savings-plans.md)

# 에 대한 서비스 버전 인덱스 파일 AWS 서비스
<a name="service-version-index-file-for-aws-service"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

서비스 버전 인덱스 파일을 이해하려면 다음 참조를 참조하세요.

**Topics**
+ [예: 서비스에 대한 서비스 버전 인덱스 파일](#example-service-version-index-file-service)
+ [서비스 버전 인덱스 파일 정의](#service-version-index-definitions-sps)

## 예: 서비스에 대한 서비스 버전 인덱스 파일
<a name="example-service-version-index-file-service"></a>

서비스 버전 인덱스 파일은 다음과 같습니다.

```
{
   "formatVersion":"The version number for the service version index format",
   "disclaimer":"The disclaimers for this service version index",
   "publicationDate":"The publication date of this service version index",
   "offerCode": "The service code/Savings Plan code",
   "currentVersion": "The latest version of the service"
   "versions":{
      "firstVersion":{
         "versionEffectiveBeginDate":"The date starting which this version is effective",
         "versionEffectiveEndDate":"The date until which this version is effective",
         "offerVersionUrl":"The relative URL for the service price list file of this version"
      },
      "secondVersion":{
         "versionEffectiveBeginDate": ...,
         "versionEffectiveEndDate": ...,
         "offerVersionUrl": ...
      },
      ...
   },
}
```

## 서비스 버전 인덱스 파일 정의
<a name="service-version-index-definitions-sps"></a>

다음 목록은 서비스 버전 인덱스 파일에서 사용되는 용어를 정의합니다.

**formatVersion**  
서비스 버전 인덱스 파일의 형식 버전을 추적하는 속성. 구조가 변경되면 파일의 `formatVersion`이 업데이트됩니다. 예를 들어 버전이 `v1`에서 `v2`로 변경됩니다.

**disclaimer**  
서비스 버전 인덱스 파일에 적용되는 모든 면책 조항

**publicationDate**  
서비스 버전 인덱스 파일이 게시된 날짜 및 시간(UTC 형식). 예를 들어 `2023-03-28T23:47:21Z`입니다.

**offerCode**  
의 제품에 대한 고유 코드입니다 AWS 서비스. 예: `AmazonRDS` 또는 `AmazonS3`.

**currentVersion**  
 AWS 서비스의 최신 버전 번호. 예를 들어 `20230328234721`입니다.

**versions**  
이 AWS 서비스에 대해 사용할 수 있는 버전 목록

**versions:version**  
 AWS 서비스에 대한 가격표 버전의 고유 코드. 버전 목록에서 조회 키로 사용됩니다. 예: `20230328234721`,

**versions:version:versionEffectiveBeginDate**  
이 버전이 유효하게 된 시작 날짜 및 시간(UTC 형식). 예를 들어 `2023-03-28T23:47:21Z`입니다.

**versions:version:versionEffectiveEndDate**  
이 버전이 유효한 기간의 종료 날짜 및 시간(UTC 형식). 예를 들어 `2023-03-28T23:47:21Z`입니다. 이 속성을 설정하지 않으면 이 버전이 현재 활성 버전임을 의미합니다.

**versions:version:offerVersionUrl**  
이 버전에 대한 서비스 가격표 파일의 상대 URL입니다. 예를 들어 `/offers/v1.0/aws/AmazonRDS/20230328234721/index.json`입니다.

# 절감형 플랜에 대한 서비스 버전 인덱스 파일
<a name="service-version-index-file-for-savings-plans"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

절감형 플랜의 서비스 버전 인덱스 파일을 이해하려면 다음 참조를 참조하세요.

**Contents**
+ [예: 절감형 플랜에 대한 서비스 버전 인덱스 파일](#service-version-index-file-savings-plans-example)
+ [서비스 버전 인덱스 정의](#service-version-index-definitions)

## 예: 절감형 플랜에 대한 서비스 버전 인덱스 파일
<a name="service-version-index-file-savings-plans-example"></a>

절감형 플랜의 서비스 버전 인덱스 파일은 다음과 같습니다.

```
{
   "disclaimer":"The disclaimers for this service version index",
   "publicationDate":"The publication date of this service version index",
   "currentOfferVersionUrl" "The relative URL of region index file for latest version number of the service"
   "versions":[
      {
         "publicationDate":"The publication date of this version of service from which this version was effective",
         "offerVersionUrl":"The relative URL for the service region index file of this version"
      },
      {
         "publicationDate": ...,
         "offerVersionUrl": ...
      },
      ...
   ],
}
```

## 서비스 버전 인덱스 정의
<a name="service-version-index-definitions"></a>

다음 목록은 서비스 버전 인덱스 파일에서 사용되는 용어를 정의합니다.

**disclaimer**  
서비스 버전 인덱스 파일에 적용되는 모든 면책 조항

**publicationDate**  
서비스 버전 인덱스 파일이 게시된 날짜 및 시간(UTC 형식). 예를 들어 `2023-03-28T23:47:21Z`입니다.

**currentOfferVersionUrl**  
서비스의 최신 버전 번호에 대한 리전 인덱스 파일의 상대 URL. 예를 들어 `/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/current/region_index.json`입니다.

**versions**  
이에 사용할 수 있는 버전의 목록입니다 AWS 서비스.

**versions:version:publicationDate**  
서비스 버전 인덱스 파일이 게시된 날짜 및 시간(UTC 형식). 예: `2023-04-07T14:57:05Z`

**versions:version:offerVersionUrl**  
이 버전의 서비스 리전 인덱스 파일의 상대 URL. 예를 들어 `/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/20230407145705/region_index.json`입니다.

# 서비스 리전 인덱스 파일 읽기
<a name="reading-service-region-index-files"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

서비스 리전 인덱스 파일은 JSON 형식으로 제공됩니다. 이 파일을 읽으려면 텍스트 프로그램이나 JSON을 구문 분석하는 애플리케이션을 사용할 수 있습니다.

서비스 리전 인덱스 파일은 두 개의 기본 섹션으로 구성되어 있습니다.
+ 서비스 리전 인덱스 파일에 대한 메타데이터
+  AWS 서비스 Savings Plan 또는 제한된 AWS Marketplace 상품을 나타내는 서비스를 사용할 수 AWS 리전 있는 모든 목록입니다.

서비스 리전에 대한 정보에는 지정된 기간 및 리전에 대해 해당 서비스의 가격을 다운로드하는 데 사용할 수 있는 URL이 포함됩니다.

**Topics**
+ [에 대한 서비스 리전 인덱스 파일 AWS 서비스](service-region-index-file-for-service.md)
+ [절감형 플랜에 대한 서비스 리전 인덱스 파일](service-region-index-files-for-savings-plan.md)

# 에 대한 서비스 리전 인덱스 파일 AWS 서비스
<a name="service-region-index-file-for-service"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

에 대한 서비스 버전 인덱스 파일을 이해하려면 다음 참조를 AWS 서비스참조하세요.

**Contents**
+ [예:에 대한 서비스 리전 인덱스 파일 AWS 서비스](#service-region-index-file-for-service)
+ [서비스 리전 인덱스 정의](#service-region-index-definitions-services)

## 예:에 대한 서비스 리전 인덱스 파일 AWS 서비스
<a name="service-region-index-file-for-service"></a>

의 서비스 리전 인덱스 파일은 다음과 AWS 서비스 같습니다.

```
{
   "formatVersion":"The version number for the service region index format",
   "disclaimer":"The disclaimers for this service region index",
   "publicationDate":"The publication date of this service region index",
   "regions":{
      "firstRegion":{
         "regionCode":"A unique identifier that identifies this region",
         "currentVersionUrl":"The relative URL for the service regional price list file of this version"
      },
      "secondRegion":{
         "regionCode": ...,
         "currentVersionUrl": ...
      },
      ...
   }
}
```

## 서비스 리전 인덱스 정의
<a name="service-region-index-definitions-services"></a>

다음 목록은 서비스 리전 인덱스 파일에서 사용되는 용어를 정의합니다.

**formatVersion**  
서비스 리전 인덱스 파일의 형식 버전을 추적하는 속성. 구조가 변경되면 파일의 `formatVersion`이 업데이트됩니다. 예를 들어 버전이 `v1`에서 `v2`로 변경됩니다.

**disclaimer**  
서비스 리전 인덱스 파일에 적용되는 모든 면책 조항

**publicationDate**  
서비스 리전 인덱스 파일이 게시된 날짜 및 시간(UTC 형식). 예를 들어 `2023-03-28T23:47:21Z`입니다.

**리전**  
 AWS 리전 에 사용할 수 있는 목록입니다 AWS 서비스.

**regions:regionCode**  
이것이 제공되는 리전의 고유 코드 AWS 서비스 입니다. 리전 목록에서 조회 키로 사용됩니다. 예를 들어, `us-east-2`는 미국 동부(오하이오) 리전입니다.

**regions:regionCode:currentVersionUrl**  
이 버전의 서비스 리전 인덱스 파일의 상대 URL. 예를 들어 `/offers/v1.0/aws/AmazonRDS/20230328234721/us-east-2/index.json`입니다.

# 절감형 플랜에 대한 서비스 리전 인덱스 파일
<a name="service-region-index-files-for-savings-plan"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

절감형 플랜의 서비스 리전 인덱스 파일을 이해하려면 다음 참조를 참조하세요.

**Topics**
+ [예: 절감형 플랜에 대한 서비스 리전 인덱스 파일](#service-region-index-file-for-savings-plans)
+ [서비스 리전 인덱스 정의](#service-region-index-file-definitions)

## 예: 절감형 플랜에 대한 서비스 리전 인덱스 파일
<a name="service-region-index-file-for-savings-plans"></a>

절감형 플랜의 서비스 리전 인덱스 파일은 다음과 같습니다.

```
{
   "disclaimer":"The disclaimers for this service version index",
   "publicationDate":"The publication date of this service region index",
   "regions":[
      {
         "regionCode":"A unique identifier that identifies this region",
         "versionUrl":"The relative URL for the service regional price list file of this version"
      },
      {
         "regionCode": ...,
         "versionUrl": ...
      },
      ...
   ]
}
```

## 서비스 리전 인덱스 정의
<a name="service-region-index-file-definitions"></a>

다음 목록은 서비스 리전 인덱스 파일에서 사용되는 용어를 정의합니다.

**disclaimer**  
서비스 리전 인덱스 파일에 적용되는 모든 면책 조항

**publicationDate**  
서비스 리전 인덱스 파일이 게시된 날짜 및 시간(UTC 형식). 예를 들어 `2023-03-28T23:47:21Z`입니다.

**리전**  
 AWS 리전 에 사용할 수 있는 목록입니다 AWS 서비스.

**regions:regionCode**  
이것이 제공되는 리전의 고유 코드 AWS 서비스 입니다. 리전 목록에서 조회 키로 사용됩니다. 예를 들어, `us-east-2`는 미국 동부(오하이오) 리전입니다.

**regions:versionUrl**  
이 버전의 서비스 리전 인덱스 파일의 상대 URL. 예를 들어 `/savingsPlan/v1.0/aws/AWSComputeSavingsPlan/20230407145705/us-east-2/index.json`입니다.

# 서비스 가격표 파일 읽기
<a name="reading-service-price-list-files"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

서비스 가격표 파일에는 *특정 리전*의 *전체 AWS 리전* 또는 단일 AWS 서비스 또는 Savings Plan에 대한 제품 및 가격이 나열 AWS 서비스 Savings Plan.

서비스 가격표 파일은 CSV 또는 JSON 형식으로 사용할 수 있습니다.

이 파일을 읽으려면 CSV 파일을 읽고 정렬하는 스프레드시트 프로그램이나 JSON 파일을 구문 분석하는 애플리케이션을 사용할 수 있습니다.

**참고**  
CSV 파일에서는 제품과 요금 세부 정보가 한 섹션으로 통합되어 있습니다. JSON 파일에서는 제품 세부 정보와 요금 세부 정보가 별도의 섹션에 있습니다.

**Topics**
+ [에 대한 서비스 가격표 파일 읽기 AWS 서비스](reading-service-price-list-file-for-services.md)
+ [절감형 플랜에 대한 서비스 가격표 파일 읽기](reading-service-price-list-file-for-savings-plans.md)

# 에 대한 서비스 가격표 파일 읽기 AWS 서비스
<a name="reading-service-price-list-file-for-services"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

의 서비스 가격표 파일에는 다음과 같은 유형의 정보가 AWS 서비스 포함됩니다.
+ 서비스 가격표 파일 세부 정보 - 형식 버전, 게시 날짜 등 서비스 가격표 파일에 대한 메타데이터
+ 제품 세부 정보 - 제품 정보와 함께 서비스 가격표 파일의 제품을 나열하는 제품 메타데이터
+ 가격 세부 정보(조건) - 이 서비스 가격표 파일에 있는 모든 제품의 가격

**Contents**
+ [CSV 파일](#reading-service-price-list-file-csv)
+ [JSON 파일](#reading-service-price-list-file-json)
+ [용어 정의](#term-definitions)
  + [OnDemand 및 예약 용어 정의](#on-demand-reserved-term-definition)
  + [FlatRate 용어](#flat-rate-term)
+ [서비스 가격표 정의](#service-price-list-files-details)
+ [제품 세부 정보(products) 정의](#product-details-terms)
+ [제품 세부 정보(terms) 정의](#product-details-metadata)
+ [OnDemand 및 예약 정의](#ondemand-reserved-definitions)
+ [FlatRate 정의](#flatrate-definitions)

## CSV 파일
<a name="reading-service-price-list-file-csv"></a>

CSV 파일의 처음 5개 행에는 가격표 파일의 메타데이터가 있습니다. 여섯 번째 행에는 제품의 열 이름과 `SKU`, `OfferTermCode`, `RateCode`, `TermType` 등과 같은 제품 속성이 있습니다.

열 수는 서비스에 따라 다릅니다. 처음 몇 개 열에는 요금 세부 정보가 있으며, 다른 열에는 서비스의 제품 세부 정보가 들어 있습니다.

## JSON 파일
<a name="reading-service-price-list-file-json"></a>

제품 세부 정보와 요금 세부 정보가 별개 섹션에 있습니다. 동일 제품이 여러 조건에 따라 제공될 수 있으며, 동일 조건이 여러 제품에 적용될 수 있습니다. 예를 들어 Amazon Elastic Compute Cloud(Amazon EC2) 인스턴스는 `Hourly` 또는 `Reserved` 조건으로 사용할 수 있습니다. 제품의 SKU를 사용하여 해당 제품에 사용할 수 있는 조건을 확인할 수 있습니다.

**Example 예: 일반 JSON 구조**  

```
{
   "formatVersion":"The version of the file format",
   "disclaimer":"The disclaimers for the price list file",
   "offerCode":"The code for the service", 
   "version":"The version of the price list file",
   "publicationDate":"The publication date of the price list file", 
   "products": {  
      "sku": {
         "sku":"The SKU of the product",
         "productFamily":"The product family of the product", 
         "attributes": {
            "attributeName":"attributeValue" 
         }    
      }  
   }, 
   "terms": TermDefinitions
}
```

## 용어 정의
<a name="term-definitions"></a>

용어 유형마다 용어 객체 내의 구조가 다릅니다.

### OnDemand 및 예약 용어 정의
<a name="on-demand-reserved-term-definition"></a>

```
{
   "OnDemand|Reserved": {
      "sku": {
         "sku.offerTermCode": {      
            "offerTermCode":"The term code of the product", 
            "sku":"The SKU of the product",
            "effectiveDate":"The effective date of the pricing details", 
            "termAttributesType":"The attribute type of the terms", 
            "termAttributes": { 
               "attributeName":"attributeValue" 
            }, 
            "priceDimensions": {       
               "rateCode": {     
                  "rateCode":"The rate code of the price", 
                  "description":"The description of the term", 
                  "unit":"The usage measurement unit for the price", 
                  "startingRange":"The start range for the term", 
                  "endingRange":"The end range for the term", 
                  "pricePerUnit": {       
                     "currencyCode":"currencyRate"
                  }            
               }          
            }        
         }      
      }    
   }
}
```

### FlatRate 용어
<a name="flat-rate-term"></a>

```
{
   "FlatRate": {
      "plans": [{
         "planCode": "Plan identifier (for example, Free, Pro, Business)",
         "sku": "The SKU associated with this plan",
         "features": [{
            "featureCode": "Unique feature identifier",
            "featureName": "Human-readable feature name",
            "usageQuota": {
               "value": "Usage limit (for quantitative features)",
               "unit": "Unit of measurement (for example, requests, GB)"
            }
         }],
         "subscriptionPrice": {
            "rateCode": "The rate code of the price",
            "description": "The description of the term",
            "pricePerUnit": {
               "currencyCode": "currencyRate"
            }
         }
      }]
   }
}
```

## 서비스 가격표 정의
<a name="service-price-list-files-details"></a>

다음 목록은 서비스 가격표 파일에서 사용되는 용어를 정의합니다.

**formatVersion**  
서비스 가격표 파일의 형식 버전을 추적하는 속성. 구조가 변경되면 파일의 `formatVersion`이 업데이트됩니다. 예를 들어 버전이 `v1`에서 `v2`로 변경됩니다.

**disclaimer**  
서비스 가격표 파일에 적용되는 모든 면책 조항

**offerCode**  
의 제품에 대한 고유 코드입니다 AWS 서비스. 예: Amazon EC2는 `AmazonEC2`, 또는 Amazon S3는 `AmazonS3`.

**버전**  
서비스 가격표 파일의 버전을 추적하는 속성. 파일이 새로 게시될 때마다 새로운 버전 번호가 포함됩니다. 예: `20150409022205` 및 `20150910182105`.

**publicationDate**  
서비스 가격표 파일이 게시된 날짜 및 시간(UTC 형식). 예: `2015-04-09T02:22:05Z` 및 `2015-09-10T18:21:05Z`.

## 제품 세부 정보(products) 정의
<a name="product-details-terms"></a>

이 섹션에는 AWS 서비스에 대한 서비스 가격표 파일에 있는 제품에 관한 정보가 들어 있습니다. 제품에는 SKU 인덱스가 붙습니다.

**products:sku**  
제품의 고유 코드. `SKU` 코드를 사용하여 제품 세부 정보와 요금을 연결합니다.  
예를 들어 SKU가 `HCNSHWWAJSGVAHMH`인 제품은 `HCNSHWWAJSGVAHMH`도 SKU로 나열되어 있는 가격에 대해서만 사용할 수 있습니다.

**products:sku:productFamily**  
제품 유형의 범주. 예: Amazon EC2는 `compute`, 또는 Amazon S3는 `storage`.

**products:sku:attributes**  
모든 제품 속성의 목록.

**products:sku:attributes:Attribute Name**  
제품 속성의 이름. 예: `Instance Type`, `Processor` 또는 `OS`.

**products:sku:attributes:Attribute Value**  
제품 속성의 값. 예를 들어 `m1.small`(인스턴스 유형), `xen`(프로세서 유형) 또는 `Linux`(OS 유형)

## 제품 세부 정보(terms) 정의
<a name="product-details-metadata"></a>

이 섹션에는 AWS 서비스에 대한 서비스 가격표 파일에 있는 제품의 가격에 관한 정보가 들어 있습니다. 요금은 약관에 따라 인덱싱됩니다.

**terms:termType**  
조건 정의에서 기술하는 조건의 특정 유형. 유효한 용어 유형은 `Reserved`, `OnDemand`및 입니다`FlatRate`.

## OnDemand 및 예약 정의
<a name="ondemand-reserved-definitions"></a>

이 단원에서는 `OnDemand` 또는를 `termType` 참조합니다`Reserved`.

**terms:termType:SKU**  
제품의 고유 코드. `SKU` 코드를 사용하여 제품 세부 정보와 요금을 연결합니다.  
예를 들어 SKU가 `HCNSHWWAJSGVAHMH`인 제품은 `HCNSHWWAJSGVAHMH`도 SKU로 나열된 요금으로만 사용할 수 있습니다.

**terms:termType:sku:Offer Term Code**  
특정 조건 유형의 고유 코드. 예를 들어 `KCAKZHGHG`입니다.  
제품 및 요금 조합은 SKU 코드와 조건 코드를 마침표로 구분하여 참조합니다. 예를 들어 `U7ADXS4BEK5XXHRU.KCAKZHGHG`입니다.

**terms:termType:sku:Effective Date**  
서비스 가격표 파일이 적용되기 시작하는 날짜. 예를 들어 조건의 `EffectiveDate`가 2017년 11월 1일이면, 해당 날짜 전에는 이 요금이 적용되지 않습니다.

**terms:termType:sku:Term Attributes Type**  
조건이 적용되는 제품 및 제품 제공물을 식별하는 고유의 코드. 예를 들어 `EC2-Reserved` 속성 유형은 조건이 Amazon EC2 예약 호스트에 적용됨을 의미합니다.

**terms:termType:sku:Term Attributes**  
조건 유형에 적용되는 모든 속성의 목록. 형식은 `attribute-name: attribute-value`과 같습니다. 예를 들어 조건의 기간 및 조건이 적용되는 구매 유형일 수 있습니다.

**terms:termType:sku:Term Attributes:Attribute Name**  
`TermAttribute`의 이름. 이 이름을 사용하여 특정 속성을 검색할 수 있습니다. 예를 들어 `length` 또는 `PurchaseOption`으로 조건을 검색할 수 있습니다.

**terms:termType:sku:Term Attributes:Attribute Value**  
`TermAttribute`의 값. 예를 들어 조건은 기간이 1년이고 구매 옵션이 `All Upfront`일 수 있습니다.

**terms:termType:sku:Price Dimensions**  
가격표 파일의 요금 세부 정보. 예: 사용량 측정 방식, 결제 가능 통화, 요금 티어 한도 등

**terms:termType:sku:Price Dimensions:Rate Code**  
제품, 제안, 요금 티어 조합의 고유 코드. 제품 및 조건 조합은 요금 차원이 여러 개 있을 수 있습니다(예: 프리 티어, 저사용 티어, 고사용 티어 등).

**terms:termType:sku:Price Dimensions:Rate Code:Description**  
가격 또는 요율에 대한 설명.

**terms:termType:sku:Price Dimensions:Rate Code:Unit**  
각 서비스에서 요금 청구를 위해 사용량을 측정할 때 사용하는 단위의 유형. 예를 들어 Amazon EC2는 시간을 사용하고 Amazon S3는 GB를 사용합니다.

**terms:termType:sku:Price Dimensions:Rate Code:Starting Range**  
해당 가격이 적용되는 가격 티어의 하한. 예: 0GB 또는 1,001건의 API 작업 호출

**terms:termType:sku:Price Dimensions:Rate Code:Ending Range**  
해당 가격이 적용되는 가격 티어의 상한. 예: 1,000GB 또는 10,000건의 API 작업 호출

**terms:termType:sku:Price Dimensions:Rate Code:Price Per Unit**  
서비스 비용에 대한 단일 측정 단위의 계산.

**terms:termType:sku:Price Dimensions:Rate Code:Price Per Unit:Currency Code**  
특정 제품 가격의 통화를 나타내는 코드.

**terms:termType:sku:Price Dimensions:Rate Code:Price Per Unit:Currency Rate**  
지원되는 다양한 통화를 기준으로 한 제품 요금. 예: 단위당 \$11.2536.

## FlatRate 정의
<a name="flatrate-definitions"></a>

이 단원에서는를 `termType` 참조합니다`FlatRate`.

**terms:termType:plans**  
다양한 정액 요금제를 사용할 수 있습니다. 각 플랜은 번들링된 기능과 고정 구독 비용이 포함된 전체 요금 티어를 나타냅니다.

**terms:termType:plans:planCode**  
정액제 플랜의 고유 식별자입니다(표본의 경우 "무료", "Pro").

**용어:termType:plans:sku**  
이 특정 계획과 연결된 SKU입니다. 계획을 제품 섹션의 해당 제품에 연결합니다.

**terms:termType:plans:features**  
정액제 계획에 포함된 기능 배열입니다.

**terms:termType:plans:features:featureCode**  
기능의 고유 식별자(예: "Requests", "DataTransfer", "S3Storage").

**terms:termType:plans:features:featureName**  
사람이 읽을 수 있는 기능 이름(예: "Requests", "Data Transfer").

**terms:termType:plans:features:usageQuota**  
정량적 기능의 사용량 제한. 이 객체는 선택 사항이며 측정 가능한 제한이 있는 기능에만 존재합니다.

**terms:termType:plans:features:usageQuota:value**  
기능의 숫자 제한(예: 100만 요청의 경우 "1000000", 100GB의 경우 "100").

**terms:termType:plans:features:usageQuota:unit**  
사용량 한도에 대한 측정 단위(예: "요청", "GB").

**terms:termType:plans:subscriptionPrice**  
정액 요금제에 대한 구독 요금 세부 정보입니다.

**terms:termType:plans:subscriptionPrice:rateCode**  
제품, 제안, 요금 티어 조합의 고유 코드.

**terms:termType:plans:subscriptionPrice:Description**  
가격 또는 요율에 대한 설명.

**term:termType:plans:subscriptionPrice:단위당 요금**  
서비스 비용에 대한 단일 측정 단위의 계산.

**term:termType:plans:subscriptionPrice:단위당 가격:통화 코드**  
특정 제품 가격의 통화를 나타내는 코드.

**term:termType:plans:subscriptionPrice:단위당 가격:통화율**  
지원되는 다양한 통화의 제품 요금(예: 단위당 1.2536 USD).

# 절감형 플랜에 대한 서비스 가격표 파일 읽기
<a name="reading-service-price-list-file-for-savings-plans"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

의 서비스 가격표 파일에는 다음과 같은 유형의 정보가 AWS 서비스 포함됩니다.
+ 서비스 가격표 파일 세부 정보 - 버전 AWS 리전, 게시 날짜 등 서비스 가격표 파일에 대한 메타데이터
+ 제품 세부 정보 - 제품 정보와 함께 서비스 가격표 파일의 제품을 나열하는 제품 메타데이터
+ 요금 세부 정보(조건) - 이 서비스 가격표 파일에 있는 모든 제품의 요금

**Contents**
+ [CSV 파일](#service-price-list-file-for-saving-plans-csv)
+ [JSON 파일](#service-price-list-file-for-saving-plans-json)
+ [서비스 가격표 정의](#service-price-list-file-definitions-savings-plan)
+ [제품 세부 정보(products) 정의](#service-price-list-file-definitions-products-savings-plan)
+ [요금 세부 정보(terms) 정의](#service-price-list-file-definitions-terms-savings-plan)

## CSV 파일
<a name="service-price-list-file-for-saving-plans-csv"></a>

CSV 파일의 처음 5개 행에는 가격표 파일의 메타데이터가 있습니다. 여섯 번째 행에는 제품의 열 이름과 `SKU`, `RateCode` 등과 같은 제품 속성이 있습니다.

열 수는 절감형 플랜에 따라 달라집니다. 처음 몇 개 열에는 요금 세부 정보가 있으며, 다른 열에는 절감형 플랜의 제품 세부 정보가 들어 있습니다.

## JSON 파일
<a name="service-price-list-file-for-saving-plans-json"></a>

제품 세부 정보와 요금 세부 정보가 별개 섹션에 있습니다. JSON 서비스 가격표 파일은 다음 예제와 같습니다.

```
{
   "version" : "The version of the price list file",
   "publicationDate" : "The publication date of the price list file",
   "regionCode" : "Region for which price list file is valid for",
   "products" : [  
      {
         "sku" : "The SKU of the product",
         "productFamily" : "The product family of the product", 
         "serviceCode" : "Savings plan code",
         "attributes" : {
            "attributeName":"attributeValue", 
         }    
      },
      ...  
   ], 
   "terms" : {
      "savingsPlan" : [
         {
            "sku" : "The SKU of the product",
            "description" : "Description of the product",
            "effectiveDate" : "The effective date of the pricing details",
            "leaseContractLength" : {
                "duration" : "Length of the lease contract - it is a number",
                "unit" : "Unit of the duration"
            },
            "rates" : [
                {
                    "discountedSku" : "The SKU of the discounted on demand product",
                    "discountedUsageType" : "Usage type of the discounted product",
                    "discountedOperation" : "Operation of the discounted product",
                    "discountedServiceCode" : "Service code of the discounted product",
                    "rateCode" : "The rate code of this price detail",
                    "unit" : "Unit used to measure usage of the product",
                    "discountedRate" : {
                        "price" : "Price of the product",
                        "currency" : "Currency of the price"
                    }
                },
                ...
            ]
        },
        ...   
      ]  
   }
}
```

## 서비스 가격표 정의
<a name="service-price-list-file-definitions-savings-plan"></a>

다음 목록은 서비스 가격표 파일에서 사용되는 용어를 정의합니다.

**regionCode**  
가격표가 유효한 리전의 리전 코드입니다.

**버전**  
가격표 파일의 버전을 추적하는 속성. 파일이 새로 게시될 때마다 새로운 버전 번호가 포함됩니다. 예: `20150409022205` 및 `20150910182105`.

**publicationDate**  
서비스 가격표 파일이 게시된 날짜 및 시간(UTC 형식). 예: `2015-04-09T02:22:05Z` 및 `2015-09-10T18:21:05Z`.

## 제품 세부 정보(products) 정의
<a name="service-price-list-file-definitions-products-savings-plan"></a>

이 섹션에서는 절감형 플랜의 가격표 파일에 있는 제품에 대한 정보를 제공합니다. 제품에는 SKU 인덱스가 붙습니다.

**products:product:sku**  
제품의 고유 코드. `SKU` 코드를 사용하여 제품 세부 정보와 요금을 연결합니다.  
예를 들어 SKU가 `HCNSHWWAJSGVAHMH`인 제품은 `HCNSHWWAJSGVAHMH`도 SKU로 나열된 요금으로만 사용할 수 있습니다.

**products:product:productFamily**  
제품 유형의 범주. 예: 컴퓨팅 절감형 플랜의 경우 `EC2InstanceSavingsPlans`

**products:product:serviceCode**  
절감형 플랜의 서비스 코드. 예를 들어 `ComputeSavingsPlans`입니다.

**products:product:attributes**  
모든 제품 속성의 목록

**products:product:attributes:attributeName**  
제품 속성의 이름. 예: `Instance Type`, `Location Type` 또는 `Purchase Option`.

**products:product:attributes:attributeValue**  
제품 속성의 값. 예: `m1.small`(인스턴스 유형), AWS Local Zone(위치 유형) 또는 `No Upfront`(구매 옵션 유형)

## 요금 세부 정보(terms) 정의
<a name="service-price-list-file-definitions-terms-savings-plan"></a>

이 섹션에서는 절감형 플랜의 가격표 파일에 있는 제품의 요금에 대한 정보를 제공합니다.

 요금 먼저 조건(`savingsPlan`)별로 인덱싱됩니다.

**terms:termType**  
조건 정의에서 기술하는 조건의 특정 유형. 유효한 조건 유형 `savingsPlan`입니다.

**terms:termType:sku**  
제품의 고유 코드. `SKU` 코드를 사용하여 제품 세부 정보와 요금을 연결합니다.  
예를 들어 SKU가 `T496KPMD8YQ8RZNC`인 제품은 `496KPMD8YQ8RZNC`도 SKU로 나열된 요금으로만 사용할 수 있습니다.

**terms:termType:sku:description**  
제품에 대한 설명입니다.

**terms:termType:sku:effectiveDate**  
서비스 가격표 파일이 적용되기 시작하는 날짜. 예를 들어 조건의 `EffectiveDate`가 2017년 11월 1일이면, 해당 날짜 전에는 이 요금이 적용되지 않습니다.

**terms:termType:sku:leaseContractLength:duration**  
리스 계약의 기간. 이 값은 숫자입니다. 예: 1 또는 3

**terms:termType:sku:rates**  
절감형 플랜 제품에 적용되는 모든 할인 요금 목록입니다. 절감형 플랜 제품 1개는 다른 서비스의 여러 제품을 조합한 것으로, 여기에는 조합의 여러 요금이 포함됩니다.

**terms:termType:sku:rates:discountedSku**  
할인된 온디맨드 제품의 SKU

**terms:termType:sku:rates:discountedUsageType**  
할인된 온디맨드 제품의 사용량 유형

**terms:termType:sku:rates:discountedOperation**  
할인된 온디맨드 제품의 작업

**terms:termType:sku:rates:discountedServiceCode**  
할인된 온디맨드 제품의 서비스 코드

**terms:termType:sku:rates:rateCode**  
절감형 플랜 제품에서 제공되는 이 요율의 요율 코드. 예: `T496KPMD8YQ8RZNC.26PW7ZDSYZZ6YBTZ`

**terms:termType:sku:rates:unit**  
제품 사용량을 측정하는 데 사용되는 단위. 예: Amazon EC2 인스턴스의 경우 `Hrs`

**terms:termType:sku:rates:discountedRate:price**  
절감형 플랜 제품에서 제공되는 할인 제품의 가격. 예를 들어 `3.434`입니다.

**terms:termType:sku:rates:discountedRate:currency**  
절감형 플랜 제품에서 제공되는 할인 제품의 통화. 예를 들어 `USD`입니다.

# 서비스 가격표 파일에서 가격 찾기
<a name="finding-prices-in-service-price-list-files"></a>


|  | 
| --- |
| 에 대한 피드백을 제공하려면이 [간단한 설문 조사를](https://amazonmr.au1.qualtrics.com/jfe/form/SV_cO0deTMyKyFeezA) AWS 가격표완료하세요. 응답은 익명으로 처리됩니다. **참고:** 이 설문조사는 영어로만 진행됩니다. | 

 AWS Price List Bulk API는 온디맨드 및 예약 인스턴스 요금을 포함하여 정보 제공 목적으로 모든 AWS 제품에 대한 가격을 제공합니다.

특정 제품에 대한 가격 및 조건을 찾으려면 제안 파일을 사용할 수 있습니다. 예를 들어 Amazon Elastic Compute Cloud(Amazon EC2) 인스턴스 가격표를 찾을 수 있습니다.

**참고**  
 AWS Price List Bulk API는 AWS 프리 티어 요금과 같은 제한된 기간의 제안에 대한 포괄적인 소스가 아닙니다. 프리 티어 가격에 대한 자세한 내용은 [AWS 프리 티어](https://aws.amazon.com/free/)‭ 섹션을 참조하세요.

관심 있는 제품에 대한 가격을 찾으려면

**Contents**
+ [서비스에 대한 온디맨드 가격 찾기](#finding-one-demand-prices-services)
+ [서비스에 대한 계층화된 요금제 찾기](#finding-tiered-prices-services)
+ [프리 티어를 통해 서비스에 대한 계층화된 요금제 찾기](#finding-tiered-prices-services-free-tier)
  + [예제](#finding-tiered-prices-services-free-tier-example)
+ [예약 인스턴스로 서비스에 대한 가격 찾기](#finding-prices-services-reserved-instances)

## 서비스에 대한 온디맨드 가격 찾기
<a name="finding-one-demand-prices-services"></a>

다음 절차에서는 Amazon EC2 AWS 서비스와 같은의 온디맨드 가격을 찾는 방법을 보여줍니다.

**CSV 파일을 사용하여 온디맨드 가격을 찾으려면**

1. 서비스에 대한 CSV 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 CSV 파일을 엽니다.

1. **TermType** 열에서 **OnDemand**가 표시되도록 필터링합니다.

1. 원하는 사용량 유형과 작업을 찾습니다.

1. **PricePerUnit** 열에서 해당 가격을 확인합니다.

**JSON 파일을 사용하여 온디맨드 가격을 찾으려면**

1. 서비스에 대한 JSON 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 JSON 파일을 엽니다.

1. **조건** 및 **온디맨드**에서 원하는 SKU를 찾습니다.

   SKU를 알지 못하면 **products**에서 **usage type** 및 **operation**을 검색합니다.

1. SKU에 대한 해당 온디맨드 가격을 찾으려면 **pricePerUnit**을 참조하세요.

## 서비스에 대한 계층화된 요금제 찾기
<a name="finding-tiered-prices-services"></a>

다음 절차에서는 Amazon Simple Storage Service(S3)와 같은 서비스에 대한 계층화된 요금을 찾는 방법을 보여줍니다.

**CSV 파일을 사용하여 서비스에 대한 계층화된 요금을 찾으려면**

1. 서비스에 대한 CSV 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 CSV 파일을 엽니다.

1. **TermType** 열에서 **OnDemand**가 표시되도록 필터링합니다.

1. 원하는 사용량 유형과 작업을 찾습니다.

1. **PricePerUnit** 열에서 **StartingRange** 및 **EndingRange** 각각에 해당하는 가격을 확인합니다.

**JSON 파일을 사용하여 서비스에 대한 계층화된 요금을 찾으려면**

1. JSON 파일 다운로드.

1. 원하는 애플리케이션으로 JSON 파일을 엽니다.

1. **조건** 및 **온디맨드**에서 원하는 SKU를 찾습니다.

   SKU를 알지 못하면 **products**에서 **usage type** 및 **operation**을 검색합니다.

1. 각 **beginRange** 및 **endRange**에서, 해당하는 계층화된 요금제를 찾으려면 **pricePerUnit**을 참조하세요.

## 프리 티어를 통해 서비스에 대한 계층화된 요금제 찾기
<a name="finding-tiered-prices-services-free-tier"></a>

다음 절차에서는와 같은 AWS Price List Bulk API에서 프리 티어 가격을 게시 AWS 서비스 하는 방법을 보여줍니다 AWS Lambda.

모든 프리 티어 가격에는 [AWS 프리 티어](https://aws.amazon.com/free)에 명시된 조건이 적용됩니다.

**CSV 파일 사용하여 프리 티어가 포함된 서비스에 대한 가격을 찾으려면**

1. 서비스에 대한 CSV 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 CSV 파일을 엽니다.

1. **TermType** 열에서 **OnDemand**가 표시되도록 필터링합니다.

1. **Location** 열에서 **Any**를 표시하도록 필터링합니다.

   이 시나리오 AWS 리전 에서는 ****가 전부를 나타내는 것은 아닙니다. CSV 파일의 다른 라인 항목에 의해 정의된 리전의 하위 집합으로, **RelatedTo** 열이 **Any** 항목 위치의 SKU가 일치합니다.

1. 특정 프리 티어 SKU의 모든 적격 위치 및 제품 목록을 찾으려면 **RelatedTo** 열에서 프리 티어 SKU를 찾습니다.

1. 모든 적격 위치에서 프리 티어가 담당하는 사용량을 찾으려면 **모든(Any)** 위치의 **StartingRange** 및 **EndingRange**를 참조합니다.

### 예제
<a name="finding-tiered-prices-services-free-tier-example"></a>

이 예에서는 **RelatedTo**가 SKU `ABCD`와 같은 가격 파일에 더 이상 항목이 없다고 가정합니다.

다음 표에 나와 있는 것처럼 SKU가 `ABCD`인 프리 티어 상품은 `Asia Pacific (Singapore)` 및 `US East (Ohio)` 리전에서 유효하지만 `AWS GovCloud (US)` 리전에서는 유효하지 않습니다. 프리 티어가 적용된 사용은 총 400,000초로 두 적격 리전 모두에서 사용됩니다.


****  

| SKU | StartingRage | EndingRange | 단위 | RelatedTo | Location | 
| --- | --- | --- | --- | --- | --- | 
| ABCD | 0 | 400000 | seconds |  | Any | 
| QWER | 0 | Inf | seconds | ABCD | Asia Pacific (Singapore) | 
| WERT | 0 | Inf | seconds | ABCD | US East (Ohio) | 
| ERTY | 0 | Inf | seconds |  | AWS GovCloud (US) | 

**JSON 파일을 사용하여 프리 티어가 포함된 서비스에 대한 계층화된 요금을 찾으려면**

1. 서비스에 대한 JSON 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 JSON 파일을 엽니다.

1. **제품(products)**에서 리전 접두사 **Global**을 가진 **usagetype**를 찾습니다.

1. SKU를 메모해 두고 **조건** 및 **온디맨드**에서 동일한 SKU를 찾습니다.

1. 프리 티어 사용량 금액에 대해서는 **BeginRange** 및 **EndRange**를 참조하세요.

   프리 티어가 적용되는 제품 및 지역의 목록은 **appliesTo**를 참조하세요.

## 예약 인스턴스로 서비스에 대한 가격 찾기
<a name="finding-prices-services-reserved-instances"></a>

다음 절차는 예약 인스턴스가 포함된 서비스(예: Amazon Relational Database Service(RDS))에 대한 가격을 찾는 방법을 보여줍니다.

**CSV 파일을 사용하여 예약 인스턴스에 대한 가격을 찾으려면**

1. Amazon EC2 CSV 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 CSV 파일을 엽니다.

1. **TermType** 열에서 **reserved**가 표시되도록 필터링합니다.

1. 원하는 사용량 유형과 작업을 찾습니다.

1. 각 **LeaseContractLength**, **PurchaseOption** 및 **OfferingClass**에 대해서는 **PricePerUnit** 열에서 해당 가격을 참조합니다.

**JSON 파일을 사용하여 예약 인스턴스에 대한 가격을 찾으려면**

1. 서비스에 대한 JSON 파일을 다운로드합니다.

1. 원하는 애플리케이션으로 JSON 파일을 엽니다.

1. **조건** 및 **예약**에서 원하는 SKU를 찾습니다.

   SKU를 알지 못하면 **products**에서 **usage type** 및 **operation**을 검색합니다.

동일한 제품에 대해 **LeaseContractLength**, **PurchaseOption** 및 **OfferingClass**에 대한 가격을 찾을 수 있습니다.