Amazon Web Services 한국 블로그

AWS Price List API 업데이트 – 리전별 가격 정보 제공

많은 AWS 고객의 요구에 따라 지난 2015년 말 AWS PriceList API를 출시했습니다. 클라우드 사용 예산, 향후 예측 및 비용 분석 도구를 위해 제공되는 본 API는 JSON 및 CSV 형식으로 AWS 서비스 가격을 하나의 파일로 제공합니다. 필요에 따라 가격표를 다운로드하여 원하는 업무를 처리 할 수 ​​있으며, 가격을 업데이트 할 때마다 SNS (Amazon Simple Notification Service (SNS))를 통해 알림을 수신하도록 선택할 수도 있습니다.

오늘 부터 각 리전별 AWS 가격 목록 API를 통해 리전별 가격 목록을 별도로 제공합니다. 이를 통해 더 작은 사이즈로 리전 내 가격만 활용 가능합니다.

가격 목록에 접근 하려면, 먼저 목록을 확인합니다.

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

여기에 각 리전별 목록이 있습니다.

{
  "formatVersion" : "v1.0",
  "disclaimer" : "This pricing list is for informational purposes only. All prices are subject to the additional terms included in the pricing pages on http://aws.amazon.com. All Free Tier prices are also subject to the terms included at https://aws.amazon.com/free/",
  "publicationDate" : "2017-03-31T21:29:23Z",
  "offers" : {{service code}" : {
      "offerCode" : "{service code}",
      "versionIndexUrl" : "/offers/v1.0/aws/{service code}/index.json",
      "currentVersionUrl" : "/offers/v1.0/aws/{service code}/current/index.json",
      "currentRegionIndexUrl" : "/offers/v1.0/aws/{service code}/current/region_index.json"
    }
  }
}

currentRegionIndexUrlhttps://pricing.us-east-1.amazonaws.com의 상대 경로입니다. 서비스의 리전 색인은 리전 코드 ( “ap-northeast-2”, “eu-west-2″등)로 제공합니다.

{
  "formatVersion" : "v1.0",
  "disclaimer" : "This pricing list is for informational purposes only. All prices are subject to the additional terms included in the pricing pages on http://aws.amazon.com. All Free Tier prices are also subject to the terms included at https://aws.amazon.com/free/",
  "publicationDate" : "2017-04-07T22:41:47Z",
  "regions" : {
    "ap-south-1" : {
      "regionCode" : "ap-south-1",
      "currentVersionUrl" : "/offers/v1.0/aws/AmazonEC2/20170407224147/ap-south-1/index.json"
    },
    "eu-west-2" : {
      "regionCode" : "eu-west-2",
      "currentVersionUrl" : "/offers/v1.0/aws/AmazonEC2/20170407224147/eu-west-2/index.json"
    }
}

currentVersionUrl 역시 https://pricing.us-east-1.amazonaws.com. 각 URL은 하나의 리전 및 서비스에 대한 가격 목록입니다. 가격 목록에는 리전 내외부의 데이터 전송을 포함하여 해당 지역에서 사용 가능한 모든 제품(SKU)를 포함합니다. 또한 해당 리전과 관련된 제품과 글로벌 제품도 함께 포함합니다.

정식 출시
새로운 지역 가격표는 현재 사용할 수 있으며 무료로 오늘부터 사용할 수 있습니다.

Jeff;